sr-download/sr_download/Cargo.toml
2024-07-22 21:06:37 +08:00

29 lines
722 B
TOML

[package]
name = "sr_download"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "get-save"
path = "./src/get-save.rs"
[dependencies]
reqwest = "0.12.5"
tokio = { version = "1.38.1", features = ["full"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["local-time"] }
anyhow = { version = "1.0.86", features = ["backtrace"] }
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
sea-orm = { version = "0.12.15", features = [
"sqlx-postgres",
"runtime-tokio-rustls",
] }
migration = { path = "../migration" }
serde = { version = "1.0.204", features = ["serde_derive"] }
toml = "0.8.15"
blake3 = "1.5.3"
futures = "0.3.30"
colored = "2.1.0"