2022-04-01 11:31:32 +02:00
|
|
|
[package]
|
|
|
|
name = "site-backend"
|
2022-04-05 10:19:51 +02:00
|
|
|
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-04-05 10:01:06 +02:00
|
|
|
axum = { version = "0.5.1" }
|
|
|
|
hyper = { version = "0.14.18" }
|
2022-04-01 11:31:32 +02:00
|
|
|
tokio = { version = "1.17.0", features = ["full"] }
|
2022-04-15 01:02:23 +02:00
|
|
|
tracing = "0.1.34"
|
2022-04-02 17:01:18 +02:00
|
|
|
tracing-subscriber = {version = "0.3.10", 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"
|
2022-04-02 12:44:41 +02:00
|
|
|
flate2 = "1.0.22"
|
2022-04-01 14:31:09 +02:00
|
|
|
tokio-util = { version = "0.7.1", features = ["io"] }
|
|
|
|
futures-util = "0.3.21"
|
2022-04-02 13:01:49 +02:00
|
|
|
uuid = { version = "1.0.0-alpha.1", features = ["v4"] }
|
2022-04-02 14:16:35 +02:00
|
|
|
serde_json = "1.0.79"
|
2022-04-04 16:58:34 +02:00
|
|
|
metrics = "0.18.1"
|
|
|
|
metrics-exporter-prometheus = "0.9.0"
|
2022-04-05 09:58:02 +02:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|