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-02-24 15:02:14 +01:00
|
|
|
axum = { version = "0.6.8" }
|
2022-10-31 15:04:13 +01:00
|
|
|
hyper = { version = "0.14.21" }
|
2022-12-06 01:02:40 +01:00
|
|
|
tokio = { version = "1.23.0", features = ["full"] }
|
2022-10-25 14:04:03 +02:00
|
|
|
tracing = "0.1.37"
|
2022-10-07 01:01:24 +02:00
|
|
|
tracing-subscriber = {version = "0.3.16", features = ["env-filter"] }
|
2022-12-02 15:02:52 +01:00
|
|
|
tower-http = { version = "0.3.5", features = ["fs", "trace", "auth"] }
|
2022-04-01 13:29:34 +02:00
|
|
|
tar = "0.4.38"
|
2022-11-24 16:02:29 +01:00
|
|
|
flate2 = "1.0.25"
|
2022-09-08 11:03:06 +02:00
|
|
|
tokio-util = { version = "0.7.4", features = ["io"] }
|
2022-10-26 21:03:40 +02:00
|
|
|
futures-util = "0.3.25"
|
2022-10-25 14:04:06 +02:00
|
|
|
uuid = { version = "1.2.1", features = ["v4"] }
|
2022-12-18 19:02:33 +01:00
|
|
|
serde_json = "1.0.91"
|
2022-07-22 17:01:57 +02:00
|
|
|
metrics = "0.20.1"
|
2022-08-01 16:02:37 +02:00
|
|
|
metrics-exporter-prometheus = "0.11.0"
|
2022-04-05 09:58:02 +02:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|