site-backend/Cargo.toml

29 lines
805 B
TOML
Raw Normal View History

2022-04-01 11:31:32 +02:00
[package]
name = "site-backend"
version = "0.1.4"
2022-04-01 11:31:32 +02:00
edition = "2021"
publish = false
2022-04-02 13:45:04 +02:00
[[bin]]
path = "src/main.rs"
name = "site"
2022-04-01 11:31:32 +02:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2022-09-10 11:01:22 +02:00
axum = { version = "0.5.16" }
2022-07-08 00:06:05 +02:00
hyper = { version = "0.14.20" }
2022-09-13 14:00:51 +02:00
tokio = { version = "1.21.1", features = ["full"] }
2022-07-30 00:04:03 +02:00
tracing = "0.1.36"
tracing-subscriber = {version = "0.3.15", features = ["env-filter"] }
2022-06-06 21:01:53 +02:00
tower-http = { version = "0.3.4", features = ["fs", "trace", "auth"] }
2022-04-01 13:29:34 +02:00
tar = "0.4.38"
2022-05-28 23:02:02 +02:00
flate2 = "1.0.24"
2022-09-08 11:03:06 +02:00
tokio-util = { version = "0.7.4", features = ["io"] }
futures-util = "0.3.24"
2022-06-11 01:03:46 +02:00
uuid = { version = "1.1.2", features = ["v4"] }
2022-08-22 00:04:32 +02:00
serde_json = "1.0.85"
2022-07-22 17:01:57 +02:00
metrics = "0.20.1"
metrics-exporter-prometheus = "0.11.0"
serde = { version = "1.0", features = ["derive"] }