Some checks failed
ci/check Job 'check' failed: command exited with code 101
[stderr] | |_^
[stderr] |
[stderr] = note: the lang item is first defined in crate `std` (which `ed25519_dalek` depends on)
[stderr] = note: first definition in `std` loaded from /home/z...
ci/clippy Job 'clippy' failed: command exited with code 101
[stderr] help: try adding this
[stderr] |
[stderr] 157 + impl Default for TransportRouter {
[stderr] 158 + fn default() -> Self {
[stderr] 159 + Self::new()
[stderr] 160 + }
[st...
ci/ci Pipeline 'ci' failure
Not working too well and difficult to track, but has a skeleton there to work from. Co-authored-by: Zachery Aaron Shores-Chmielewski <zacheryasc@gmail.com> Co-committed-by: Zachery Aaron Shores-Chmielewski <zacheryasc@gmail.com>
39 lines
1.1 KiB
TOML
39 lines
1.1 KiB
TOML
[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"
|
|
crossbeam-queue = "0.3.12"
|
|
ratatui = { version = "0.29", optional = true, default-features = false, features = ["crossterm"] }
|
|
crossterm = { version = "0.28", optional = true }
|
|
distribution = { path = "../distribution", optional = true }
|
|
clap = { version = "4", features = ["derive"], optional = true }
|
|
ctrlc = "3"
|
|
iroh = { version = "0.96", optional = true }
|
|
swactor-ci = { path = "../ci", optional = true }
|
|
|
|
[features]
|
|
default = ["distribution"]
|
|
tui = ["dep:ratatui", "dep:crossterm"]
|
|
distribution = ["dep:distribution"]
|
|
node = ["distribution", "dep:clap", "swactor/transport", "tcp"]
|
|
tcp = ["distribution/tcp"]
|
|
iroh = ["distribution/iroh", "dep:iroh"]
|
|
ci = ["dep:swactor-ci"]
|
|
|
|
[[bin]]
|
|
name = "swactor-tui"
|
|
path = "src/bin/tui.rs"
|
|
required-features = ["tui"]
|
|
|
|
[[bin]]
|
|
name = "swactor-node"
|
|
path = "src/bin/swactor-node.rs"
|
|
required-features = ["node"]
|