46 lines
1.4 KiB
TOML
46 lines
1.4 KiB
TOML
[package]
|
|
name = "presentation"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
description = "Self-hosted movie diary with REST API and ActivityPub federation"
|
|
license = "MIT"
|
|
|
|
[features]
|
|
default = ["federation"]
|
|
# Meta-feature: true when any federation adapter is active — keeps all #[cfg(feature = "federation")] gates working
|
|
federation = ["application/federation"]
|
|
|
|
[dependencies]
|
|
tower-http = { version = "0.6.8", features = ["cors", "fs", "trace", "tracing"] }
|
|
infer = "0.19.0"
|
|
percent-encoding = "2"
|
|
axum-governor = "2"
|
|
|
|
axum = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
tokio = { workspace = true }
|
|
dotenvy = { workspace = true }
|
|
uuid = { workspace = true }
|
|
chrono = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
futures = { workspace = true }
|
|
|
|
api-types = { workspace = true }
|
|
domain = { workspace = true }
|
|
application = { workspace = true }
|
|
template-askama = { workspace = true }
|
|
utoipa = { version = "5.5.0", features = ["axum_extras", "uuid"] }
|
|
utoipa-scalar = { version = "0.3.0", features = ["axum"], default-features = false }
|
|
utoipa-swagger-ui = { version = "9.0.2", features = ["axum", "vendored"] }
|
|
|
|
[dev-dependencies]
|
|
bytes = { workspace = true }
|
|
futures = { workspace = true }
|
|
tower = { version = "0.5", features = ["util"] }
|
|
domain = { workspace = true, features = ["test-helpers"] }
|
|
composition = { workspace = true }
|