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]
|
2023-04-30 15:04:45 +02:00
|
|
|
axum = { version = "0.6.18" }
|
2023-04-30 17:01:40 +02:00
|
|
|
hyper = { version = "0.14.26" }
|
2023-04-25 21:01:57 +02:00
|
|
|
tokio = { version = "1.28.0", features = ["full"] }
|
2022-10-25 14:04:03 +02:00
|
|
|
tracing = "0.1.37"
|
2023-04-29 16:02:04 +02:00
|
|
|
tracing-subscriber = {version = "0.3.17", features = ["env-filter"] }
|
2023-03-25 02:04:29 +01:00
|
|
|
tower-http = { version = "0.4.0", features = ["fs", "trace", "auth"] }
|
2022-04-01 13:29:34 +02:00
|
|
|
tar = "0.4.38"
|
2023-04-29 16:01:51 +02:00
|
|
|
flate2 = "1.0.26"
|
2023-04-25 21:01:54 +02:00
|
|
|
tokio-util = { version = "0.7.8", features = ["io"] }
|
2023-04-29 16:01:55 +02:00
|
|
|
futures-util = "0.3.28"
|
2023-04-29 10:01:43 +02:00
|
|
|
uuid = { version = "1.3.2", features = ["v4"] }
|
2024-01-02 09:00:23 +01:00
|
|
|
serde_json = "1.0.110"
|
2023-04-29 17:01:44 +02:00
|
|
|
metrics = "0.21.0"
|
2023-04-30 17:01:43 +02:00
|
|
|
metrics-exporter-prometheus = "0.12.0"
|
2022-04-05 09:58:02 +02:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|