upub/Cargo.toml

53 lines
1.3 KiB
TOML
Raw Normal View History

[workspace]
members = [
"apb",
"upub/core",
"upub/cli",
"upub/migrations",
"upub/routes",
2024-06-06 02:21:36 +02:00
"upub/worker",
"web",
"utils/httpsign",
"utils/mdhtml",
"utils/uriproxy",
]
[package]
name = "upub-bin"
2024-06-06 02:21:36 +02:00
version = "0.3.0"
edition = "2021"
2024-04-06 18:34:41 +02:00
authors = [ "alemi <me@alemi.dev>" ]
description = "Traits and types to handle ActivityPub objects"
license = "AGPL-3.0"
keywords = ["activitypub", "activitystreams", "json"]
repository = "https://git.alemi.dev/upub.git"
readme = "README.md"
[[bin]]
name = "upub"
path = "main.rs"
[dependencies]
toml = "0.8"
2024-04-06 18:03:13 +02:00
tracing = "0.1"
tracing-subscriber = "0.3"
clap = { version = "4.5", features = ["derive"] }
signal-hook = "0.3"
signal-hook-tokio = { version = "0.3", features = ["futures-v0_3"] }
2024-04-06 18:03:13 +02:00
tokio = { version = "1.35", features = ["full"] } # TODO slim this down
2024-08-11 12:55:27 +02:00
sea-orm = { version = "1.0", features = ["sqlx-sqlite", "sqlx-postgres", "runtime-tokio-rustls"] }
futures = "0.3"
upub = { path = "upub/core" }
upub-cli = { path = "upub/cli", optional = true }
upub-migrations = { path = "upub/migrations", optional = true }
upub-routes = { path = "upub/routes", optional = true }
2024-06-06 02:21:36 +02:00
upub-worker = { path = "upub/worker", optional = true }
2024-04-06 18:03:13 +02:00
[features]
2024-06-06 02:21:36 +02:00
default = ["serve", "migrate", "cli", "worker"]
serve = ["dep:upub-routes"]
migrate = ["dep:upub-migrations"]
cli = ["dep:upub-cli"]
2024-06-06 02:21:36 +02:00
worker = ["dep:upub-worker"]