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-06-20 14:05:13 +02:00
|
|
|
axum = { version = "0.5.9" }
|
2022-05-27 22:01:48 +02:00
|
|
|
hyper = { version = "0.14.19" }
|
2022-06-09 22:02:55 +02:00
|
|
|
tokio = { version = "1.19.2", features = ["full"] }
|
2022-06-08 18:04:29 +02:00
|
|
|
tracing = "0.1.35"
|
2022-04-28 10:02:34 +02:00
|
|
|
tracing-subscriber = {version = "0.3.11", 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-06-04 23:01:49 +02:00
|
|
|
tokio-util = { version = "0.7.3", features = ["io"] }
|
2022-04-01 14:31:09 +02:00
|
|
|
futures-util = "0.3.21"
|
2022-06-11 01:03:46 +02:00
|
|
|
uuid = { version = "1.1.2", features = ["v4"] }
|
2022-05-03 22:03:01 +02:00
|
|
|
serde_json = "1.0.81"
|
2022-05-30 18:02:14 +02:00
|
|
|
metrics = "0.19.0"
|
2022-06-01 17:02:39 +02:00
|
|
|
metrics-exporter-prometheus = "0.10.0"
|
2022-04-05 09:58:02 +02:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|