Files
archived-torrential/Cargo.toml
2025-12-20 20:09:53 +11:00

62 lines
1.3 KiB
TOML

[package]
name = "torrential"
version = "0.1.0"
edition = "2024"
[lib]
name = "torrential"
path = "src/lib.rs"
[[bin]]
name = "torrential"
path = "src/main.rs"
[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"] }
async-trait = "0.1.89"
futures-util = "0.3.31"
ctr = "0.9.2"
aes = "0.8.4"
bytes = "*"
file_open_limit = "0.0.5"
pin-project-lite = "0.2.16"
[lints.clippy]
pedantic = { level = "warn", priority = -1 }
almost_swapped = "deny"
unwrap_used = "warn"
expect_used = "warn"
dbg_macro = "deny"
needless_match = "deny"
cast_possible_truncation = "warn"
cast_possible_wrap = "warn"
single_match_else = "warn"
inconsistent_digit_grouping = "warn"
[[bench]]
name = "torrential"
harness = false
[dev-dependencies]
criterion = { version = "0.8.0", features = ["async", "async_tokio"] }
rand = "0.9.2"
tempfile = "3.23.0"