29 lines
805 B
TOML
29 lines
805 B
TOML
[package]
|
|
name = "site-backend"
|
|
version = "0.1.4"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[[bin]]
|
|
path = "src/main.rs"
|
|
name = "site"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
axum = { version = "0.6.18" }
|
|
hyper = { version = "0.14.26" }
|
|
tokio = { version = "1.28.0", features = ["full"] }
|
|
tracing = "0.1.37"
|
|
tracing-subscriber = {version = "0.3.17", features = ["env-filter"] }
|
|
tower-http = { version = "0.4.0", features = ["fs", "trace", "auth"] }
|
|
tar = "0.4.38"
|
|
flate2 = "1.0.26"
|
|
tokio-util = { version = "0.7.8", features = ["io"] }
|
|
futures-util = "0.3.28"
|
|
uuid = { version = "1.4.0", features = ["v4"] }
|
|
serde_json = "1.0.96"
|
|
metrics = "0.21.0"
|
|
metrics-exporter-prometheus = "0.12.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|