1
0
Fork 0
nyazoom/Cargo.toml

20 lines
780 B
TOML
Raw Normal View History

2023-04-07 09:28:23 +00:00
[package]
name = "nyazoom"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2023-04-11 10:29:21 +00:00
async_zip = { version = "0.0.13", features = ["deflate", "tokio", "tokio-fs", "async-compression"] }
2023-04-07 13:59:26 +00:00
axum = { version = "0.6.12", features = ["multipart", "http2"] }
2023-04-08 15:12:14 +00:00
futures = "0.3.28"
rand = { version = "0.8.5", features = ["small_rng"] }
2023-04-11 10:29:21 +00:00
sanitize-filename-reader-friendly = "2.2.1"
2023-04-07 13:59:26 +00:00
tokio = { version = "1.27.0", features = ["full"] }
2023-04-08 15:12:14 +00:00
tokio-util = { version = "0.7.7", features = ["io"] }
2023-04-07 13:59:26 +00:00
tower = { version = "0.4.13", features = ["util"] }
tower-http = { version = "0.4.0", features = ["fs", "trace", "limit"] }
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }