sr-download/sr_download/Cargo.toml
2024-10-23 22:24:01 +08:00

36 lines
918 B
TOML

[package]
name = "sr_download"
version = "1.2.7"
edition = "2021"
default-run = "sr_download"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# rustls 大法好!(默认使用 rustls, 用于 musl 环境)
reqwest = { version = "0.12.7", features = [
"rustls-tls",
"http2",
"charset",
], default-features = false }
colored = "2.1.0"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["local-time"] }
futures = "0.3.30"
tokio = { version = "1.40", features = ["full"] }
anyhow = { version = "1.0.87", features = ["backtrace"] }
axum = "0.7.5"
sea-orm = { version = "1.0.1", features = [
"sqlx-postgres",
"runtime-tokio-rustls",
] }
migration = { path = "../migration" }
serde = { version = "1.0", features = ["serde_derive"] }
toml = "0.8"
blake3 = "1.5.4"
quick-xml = { version = "0.36.1" }
chrono = "0.4.38"