27 lines
820 B
TOML
27 lines
820 B
TOML
[workspace]
|
|
members = ["breadarr-shared", "breadarrd", "breadarr-tui"]
|
|
resolver = "2"
|
|
|
|
[workspace.dependencies]
|
|
breadarr-shared = { path = "breadarr-shared" }
|
|
tokio = { version = "1", features = ["full"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
toml = "0.8"
|
|
anyhow = "1"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
axum = { version = "0.7", features = ["macros"] }
|
|
reqwest = { version = "0.12", features = ["json", "cookies", "multipart"] }
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
ratatui = "0.28"
|
|
crossterm = "0.28"
|
|
rusqlite = { version = "0.31", features = ["bundled"] }
|
|
quick-xml = "0.41"
|
|
async-trait = "0.1"
|
|
regex = "1"
|
|
scraper = "0.20"
|
|
ort = "2.0.0-rc.12"
|
|
tokenizers = "0.23"
|
|
fastrand = "2"
|
|
nix = { version = "0.29", features = ["fs"] }
|