summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 5dba372ce5b390175c44cb182ef058b49172f2e5 (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
[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]
axum = "0.7.6"
futures = "0.3.30"
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-util = "0.7.12"
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"] }