Files
drop/torrential/Cargo.toml
T
2025-12-01 21:29:19 +11:00

24 lines
669 B
TOML

[package]
name = "torrential"
version = "0.1.0"
edition = "2024"
[dependencies]
axum = "0.8.7"
log = "0.4.28"
reqwest = { version = "0.12.24", default-features = false, features = [
"json",
"rustls-tls",
] }
serde = { version = "1.0.228", features = ["derive"] }
simple_logger = { version = "5.1.0", default-features = false, features = [
"colors",
] }
tokio = { version = "*", features = ["rt-multi-thread", "sync"] }
droplet-rs = { git = "https://github.com/Drop-OSS/droplet-rs.git" }
dashmap = "6.1.0"
anyhow = "1.0.100"
serde_json = "1.0.145"
url = { version = "2.5.7", default-features = false }
tokio-util = { version = "0.7.17", features = ["io"] }