upub/Cargo.toml

46 lines
1 KiB
TOML
Raw Normal View History

[workspace]
members = [
"apb",
"upub/core",
"upub/cli",
"upub/migrations",
"upub/routes",
"web",
"utils/mdhtml",
"utils/uriproxy"
]
[package]
name = "upub-bin"
2024-04-30 14:23:30 +02:00
version = "0.2.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"
sea-orm = "0.12"
2024-04-06 18:03:13 +02:00
clap = { version = "4.5", features = ["derive"] }
tokio = { version = "1.35", features = ["full"] } # TODO slim this down
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-04-06 18:03:13 +02:00
[features]
default = ["serve", "migrate", "cli"]
serve = ["dep:upub-routes"]
migrate = ["dep:upub-migrations"]
cli = ["dep:upub-cli"]