Skip to main content

max / alloy_tui

552 B · 23 lines History Blame Raw
1 [package]
2 name = "alloy"
3 version = "0.0.0"
4 description = "The Alloy Console: a ratatui control surface fronting the system CLIs."
5 edition.workspace = true
6 rust-version.workspace = true
7 license.workspace = true
8 repository.workspace = true
9 authors.workspace = true
10
11 [[bin]]
12 name = "alloy"
13 path = "src/main.rs"
14
15 [dependencies]
16 alloy_tui = { path = "../alloy_tui" }
17 anyhow = "1"
18 clap = { version = "4", features = ["derive"] }
19 ratatui.workspace = true
20 serde = { version = "1.0.229", features = ["derive"] }
21 serde_json = "1.0.150"
22 makeover.workspace = true
23