mirror of
https://github.com/marcoallegretti/karapace.git
synced 2026-03-27 05:53:10 +00:00
24 lines
479 B
TOML
24 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
|