Refine fleet and provisioning interactions, expand control-plane projections, and add CPU, memory, pressure, and storage telemetry for the local dashboard surfaces.
28 lines
650 B
TOML
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
|