15 lines
391 B
TOML
15 lines
391 B
TOML
[package]
|
|
name = "tui"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
protocol = { path = "../protocol" }
|
|
ratatui = { version = "0.30.0", features = ["scrolling-regions"] }
|
|
crossterm = "0.28"
|
|
tokio = { version = "1.49", features = ["rt-multi-thread", "macros", "net", "io-util", "sync", "time"] }
|
|
serde_json = "1.0"
|
|
unicode-width = "0.2.2"
|
|
uuid = "1.23"
|