19 lines
560 B
TOML
19 lines
560 B
TOML
[package]
|
|
name = "tui"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
protocol = { workspace = true }
|
|
ratatui = { version = "0.30.0", features = ["scrolling-regions"] }
|
|
crossterm = "0.28"
|
|
tokio = { workspace = true, features = ["rt-multi-thread", "macros", "net", "io-util", "sync", "time", "process"] }
|
|
serde_json = { workspace = true }
|
|
unicode-width = "0.2.2"
|
|
uuid = { workspace = true }
|
|
toml = { workspace = true }
|
|
manifest = { workspace = true }
|
|
session-store = { workspace = true }
|
|
pod-registry = { workspace = true }
|