linutil/Cargo.toml

18 lines
311 B
TOML
Raw Normal View History

2024-06-06 23:56:45 +01:00
[package]
name = "tui"
version = "0.1.0"
edition = "2021"
[dependencies]
2024-07-18 23:37:31 +01:00
chrono = "0.4.33"
clap = { version = "4.5.11", features = ["derive"] }
2024-06-06 23:56:45 +01:00
crossterm = "0.27.0"
ego-tree = "0.6.2"
oneshot = "0.1.8"
2024-06-06 23:56:45 +01:00
portable-pty = "0.8.1"
ratatui = "0.27.0"
tui-term = "0.1.12"
2024-07-14 00:53:27 +01:00
[[bin]]
name = "linutil"
path = "src/main.rs"