mirror of
https://github.com/marcoallegretti/karapace.git
synced 2026-03-27 05:53:10 +00:00
- ratatui + crossterm based TUI - List/Detail/Help views with vim-style keybindings (j/k, g/G, Enter, q) - Search/filter (/), sort cycling (s/S) - Freeze, archive, rename actions from UI - Destroy with confirmation dialog - Color-coded environment states
23 lines
479 B
TOML
23 lines
479 B
TOML
[package]
|
|
name = "karapace-tui"
|
|
description = "Terminal UI for Karapace environment manager"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
name = "karapace_tui"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
ratatui.workspace = true
|
|
crossterm.workspace = true
|
|
karapace-core = { path = "../karapace-core" }
|
|
karapace-store = { path = "../karapace-store" }
|
|
|
|
[dev-dependencies]
|
|
tempfile.workspace = true
|