Skip to main content

max / everycycle

554 B · 23 lines History Blame Raw
1 [package]
2 name = "everycycle-tui"
3 description = "Operator dashboard: terminal UI over structured telemetry."
4 version.workspace = true
5 edition.workspace = true
6 rust-version.workspace = true
7 license.workspace = true
8 authors.workspace = true
9 repository.workspace = true
10 # The unit of publication is the repo, not the crates (decided 2026-08-06).
11 publish = false
12
13 [dependencies]
14 everycycle-hal = { path = "../hal" }
15 ratatui = { version = "0.30", features = ["crossterm_0_29"] }
16
17 [[bin]]
18 name = "everycycle-tui"
19 path = "src/main.rs"
20
21 [lints]
22 workspace = true
23