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-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-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"] }
|
2023-04-08 15:12:14 +00:00
|
|
|
urlencoding = "2.1.2"
|
2023-04-09 03:58:38 +00:00
|
|
|
zip = "0.6.4"
|