breadarr/breadarrd/Cargo.toml
Breadway 4a2adbc24d
All checks were successful
dev release / build (push) Successful in 3m30s
beta (rc) release / build (push) Has been skipped
release / build (push) Successful in 3m25s
Bump version to v0.1.1
2026-08-15 23:05:47 +08:00

33 lines
1.1 KiB
TOML

[package]
name = "breadarrd"
version = "0.1.1"
edition = "2021"
[dependencies]
breadarr-shared.workspace = true
tokio.workspace = true
anyhow.workspace = true
tracing.workspace = true
tracing-subscriber.workspace = true
axum.workspace = true
serde.workspace = true
reqwest.workspace = true
rusqlite.workspace = true
quick-xml.workspace = true
async-trait.workspace = true
regex.workspace = true
serde_json.workspace = true
ort.workspace = true
tokenizers.workspace = true
bread-onnx = { git = "https://git.breadway.dev/Breadway/bread-ecosystem", tag = "v0.7.2" }
scraper.workspace = true
chrono.workspace = true
fastrand.workspace = true
nix.workspace = true
# Forces reqwest's native-tls backend to statically build and link its own
# OpenSSL instead of dynamically linking whatever libssl/libcrypto happens
# to be on the build host — CI (see ci/build.sh) links against an archived
# old-glibc sysroot for hestia compatibility, which has no libssl/libcrypto
# of its own to dynamically link against. Also means the shipped binary no
# longer depends on the target system's OpenSSL version at all.
openssl-sys = { version = "0.9", features = ["vendored"] }