-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathCargo.toml
More file actions
73 lines (67 loc) · 1.88 KB
/
Cargo.toml
File metadata and controls
73 lines (67 loc) · 1.88 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[package]
name = "status-panel"
version = "0.1.8"
edition = "2021"
[features]
default = ["docker"]
docker = ["bollard"]
minimal = []
[dependencies]
anyhow = "1"
thiserror = "2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["fmt", "json", "env-filter"] }
clap = { version = "4", features = ["derive"] }
tokio = { version = "1", features = ["full"] }
axum = { version = "0.8", features = ["ws"] }
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
# Pin minimum rustls-webpki to fix RUSTSEC-2026-0049 (CRL matching logic)
rustls-webpki = ">=0.103.10"
ring = "0.17"
bytes = "1"
uuid = { version = "1", features = ["v4"] }
chrono = { version = "0.4", features = ["serde"] }
serde_yaml = "0.9"
futures-util = "0.3"
tokio-tungstenite = { version = "0.28", features = ["rustls-tls-webpki-roots"] }
tonic = { version = "0.12", features = ["tls"] }
prost = "0.13"
prost-types = "0.13"
lapin = "2"
tera = "1"
tower-http = { version = "0.6", features = ["fs"] }
base64 = "0.22"
hmac = "0.12"
sha2 = "0.10"
rand = "0.8"
subtle = "2"
regex = "1"
# System metrics
sysinfo = "0.30"
# Docker client for Rust (SSL disabled to avoid OpenSSL dependency on musl)
# The "pipe" feature enables Unix socket support via hyperlocal
bollard = { version = "0.19", optional = true, default-features = false, features = ["chrono", "pipe"] }
# Daemonization
daemonize = "0.5"
# Load environment variables from .env
dotenvy = "0.15"
# Runtime Rust version info
rustc_version_runtime = "0.3"
[target.'cfg(unix)'.dependencies]
nix = { version = "0.29", features = ["signal"] }
[[bin]]
name = "status"
path = "src/main.rs"
[build-dependencies]
tonic-build = "0.12"
protoc-bin-vendored = "3"
[dev-dependencies]
assert_cmd = "2.0"
tokio-test = "0.4"
tempfile = "3"
mockito = "1"
tower = "0.5"
http-body-util = "0.1"
hyper = "1"