2026-02-09 09:04:57 +00:00
|
|
|
[package]
|
|
|
|
|
name = "runtime-dashboard"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2024"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
swactor = { path = "../..", features = ["serde", "tracing"] }
|
|
|
|
|
tracing = "0.1"
|
|
|
|
|
tracing-subscriber = { version = "0.3", features = ["registry"] }
|
|
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
|
|
|
serde_json = "1"
|
|
|
|
|
tiny_http = "0.12"
|
2026-02-11 15:23:26 +00:00
|
|
|
crossbeam-queue = "0.3.12"
|
|
|
|
|
ratatui = { version = "0.29", optional = true, default-features = false, features = ["crossterm"] }
|
|
|
|
|
crossterm = { version = "0.28", optional = true }
|
2026-02-12 09:13:50 +00:00
|
|
|
distribution = { path = "../distribution", optional = true }
|
2026-02-13 17:34:01 +00:00
|
|
|
clap = { version = "4", features = ["derive"], optional = true }
|
|
|
|
|
ctrlc = "3"
|
2026-02-15 09:47:05 +00:00
|
|
|
iroh = { version = "0.96", optional = true }
|
2026-02-15 13:57:36 +00:00
|
|
|
swactor-ci = { path = "../ci", optional = true }
|
2026-02-11 15:23:26 +00:00
|
|
|
|
|
|
|
|
[features]
|
2026-02-12 09:13:50 +00:00
|
|
|
default = ["distribution"]
|
2026-02-11 15:23:26 +00:00
|
|
|
tui = ["dep:ratatui", "dep:crossterm"]
|
2026-02-12 09:13:50 +00:00
|
|
|
distribution = ["dep:distribution"]
|
2026-02-15 09:47:05 +00:00
|
|
|
node = ["distribution", "dep:clap", "swactor/transport", "tcp"]
|
|
|
|
|
tcp = ["distribution/tcp"]
|
|
|
|
|
iroh = ["distribution/iroh", "dep:iroh"]
|
2026-02-15 13:57:36 +00:00
|
|
|
ci = ["dep:swactor-ci"]
|
2026-02-11 15:23:26 +00:00
|
|
|
|
2026-02-12 09:13:50 +00:00
|
|
|
[[bin]]
|
|
|
|
|
name = "swactor-tui"
|
|
|
|
|
path = "src/bin/tui.rs"
|
2026-02-11 15:23:26 +00:00
|
|
|
required-features = ["tui"]
|
2026-02-13 17:34:01 +00:00
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
|
name = "swactor-node"
|
|
|
|
|
path = "src/bin/swactor-node.rs"
|
|
|
|
|
required-features = ["node"]
|