swactor/crates/dashboard/Cargo.toml
Zachery Aaron Shores-Chmielewski 71471de0a6 fix(dashboard): improve control and hardware views
Refine fleet and provisioning interactions, expand control-plane projections, and add CPU, memory, pressure, and storage telemetry for the local dashboard surfaces.
2026-08-22 21:17:42 +04:00

28 lines
650 B
TOML

[package]
name = "dashboard"
version = "0.1.0"
edition = "2024"
license = "AGPL-3.0-only"
[dependencies]
axum = "0.8"
telemetry = { path = "../telemetry" }
swactor = { path = "../..", features = ["serde"] }
swactor-engine = { path = "../engine" }
parking_lot = "0.12"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio.workspace = true
tokio-stream = "0.1"
[features]
# Live control actions (kill processes, provision nodes) for the
# provisioning-reconciler demo. Never enabled in shipping builds.
demo-control = []
[dev-dependencies]
proptest = "1"
tower = { version = "0.5", features = ["util"] }
[lints]
workspace = true