summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: ff7fccc64a7c46c54b111311fffae7790265173a (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
33
34
[package]
name = "statsrv"
version = "0.1.0"
edition = "2021"
license = "MIT"
authors = ["Toby Vincent <tobyv@tobyvin.dev>"]
description = "Minimal and flexable service status API"

[dependencies]
async-stream = "0.3.5"
axum = "0.7.6"
futures = "0.3.30"
futures-util = "0.3.30"
hyper-util = { version = "0.1.9", features = ["tokio"] }
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",
	"process",
] }
tokio-stream = { version = "0.1.16", features = ["io-util", "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"