summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: b70af54079e683629adcd05e7356c5b39d9879d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "statsrv"
version = "0.1.0"
edition = "2021"

[dependencies]
async-stream = "0.3.5"
axum = "0.7.6"
axum-extra = "0.9.4"
futures = "0.3.30"
futures-util = "0.3.30"
hyper-util = { version = "0.1.9", features = ["tokio"] }
main_error = "0.1.2"
reqwest = "0.12.7"
serde = { version = "1.0.210", features = ["derive"] }
serde_json = "1.0.128"
thiserror = "1.0.63"
tokio = { version = "1.40.0", features = [
	"macros",
	"rt-multi-thread",
	"net",
	"time",
] }
tokio-stream = { version = "0.1.16", features = ["sync"] }
toml = "0.8.19"
tower-http = { version = "0.6.1", features = ["fs", "trace"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
url = { version = "2.5.2", features = ["serde"] }

[dev-dependencies]
tracing-test = "0.2.5"