cove/cove-tui/Cargo.toml
2022-02-23 17:53:26 +01:00

21 lines
598 B
TOML

[package]
name = "cove-tui"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = "1.0.53"
clap = { version = "3.1.0", features = ["derive"] }
cove-core = { path = "../cove-core" }
crossterm = { version = "0.22.1", features = ["event-stream"] }
futures = "0.3.21"
palette = "0.6.0"
# serde_json = "1.0.78"
thiserror = "1.0.30"
tokio = { version = "1.16.1", features = ["full"] }
# tokio-stream = "0.1.8"
tokio-tungstenite = { version = "0.16.1", features = [
"rustls-tls-native-roots",
] }
tui = { git = "https://github.com/Garmelon/tui-rs.git", rev = "07952dc" }
unicode-width = "0.1.9"