All checks were successful
Build and Release / build-and-release (push) Successful in 1m32s
Dashboard changes: - Sort child interfaces under physical NICs with VLANs first (by VLAN ID ascending) - Non-VLAN virtual interfaces sorted alphabetically by name - Applied same sorting to both nested children and standalone virtual interfaces Example output order: - wan (vlan 5) - lan (vlan 30) - isolan (vlan 32) - seclan (vlan 35) - br-48df2d79b46f - docker0 - tailscale0 Updated to version 0.1.171
22 lines
587 B
TOML
22 lines
587 B
TOML
[package]
|
|
name = "cm-dashboard"
|
|
version = "0.1.171"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
cm-dashboard-shared = { workspace = true }
|
|
tokio = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
chrono = { workspace = true }
|
|
clap = { workspace = true }
|
|
zmq = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
ratatui = { workspace = true }
|
|
crossterm = { workspace = true }
|
|
toml = { workspace = true }
|
|
gethostname = { workspace = true }
|
|
wake-on-lan = "0.2" |