site-backend/Cargo.toml

18 lines
578 B
TOML
Raw Normal View History

2022-04-01 11:31:32 +02:00
[package]
name = "site-backend"
version = "0.0.0"
edition = "2021"
publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2022-04-01 13:29:34 +02:00
axum = { version = "0.5.0" }
2022-04-01 11:31:32 +02:00
hyper = { version = "0.14.18", features = ["full"] }
tokio = { version = "1.17.0", features = ["full"] }
tracing = "0.1.32"
tracing-subscriber = {version = "0.3.9", features = ["env-filter"] }
2022-04-01 13:29:34 +02:00
tower-http = { version = "0.2.5", features = ["fs", "trace", "auth"] }
tar = "0.4.38"
async-compression = { version = "0.3.12", features = ["tokio", "gzip"] }