47 lines
1.8 KiB
TOML
47 lines
1.8 KiB
TOML
[package]
|
|
name = "composition"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[features]
|
|
default = []
|
|
sqlite = ["dep:sqlite", "dep:sqlite-event-queue", "dep:sqlite-search", "dep:sqlite-social", "infra-wiring/sqlite"]
|
|
postgres = ["dep:postgres", "dep:postgres-event-queue", "dep:postgres-search", "dep:postgres-social", "infra-wiring/postgres"]
|
|
nats = ["dep:nats", "infra-wiring/nats"]
|
|
federation = ["application/federation"]
|
|
sqlite-federation = ["sqlite", "dep:sqlite-federation", "dep:activitypub", "federation"]
|
|
postgres-federation = ["postgres", "dep:postgres-federation", "dep:activitypub", "federation"]
|
|
|
|
[dependencies]
|
|
domain = { workspace = true }
|
|
application = { workspace = true }
|
|
infra-wiring = { workspace = true }
|
|
auth = { workspace = true }
|
|
metadata = { workspace = true }
|
|
poster-fetcher = { workspace = true }
|
|
object-storage = { workspace = true }
|
|
jellyfin = { workspace = true }
|
|
plex = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
|
|
sqlite = { workspace = true, optional = true }
|
|
postgres = { workspace = true, optional = true }
|
|
sqlite-event-queue = { workspace = true, optional = true }
|
|
postgres-event-queue = { workspace = true, optional = true }
|
|
sqlite-search = { workspace = true, optional = true }
|
|
postgres-search = { workspace = true, optional = true }
|
|
sqlite-social = { workspace = true, optional = true }
|
|
postgres-social = { workspace = true, optional = true }
|
|
nats = { workspace = true, optional = true }
|
|
activitypub = { workspace = true, optional = true }
|
|
sqlite-federation = { workspace = true, optional = true }
|
|
postgres-federation = { workspace = true, optional = true }
|
|
|
|
[dev-dependencies]
|
|
async-trait = { workspace = true }
|
|
chrono = { workspace = true }
|
|
domain = { workspace = true, features = ["test-helpers"] }
|
|
sqlx = { workspace = true }
|
|
tokio = { workspace = true }
|
|
uuid = { workspace = true }
|