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"
|
2024-08-05 20:31:17 +01:00
|
|
|
clap = { version = "4.5.13", features = ["derive"] }
|
2024-06-06 23:56:45 +01:00
|
|
|
crossterm = "0.27.0"
|
|
|
|
ego-tree = "0.6.2"
|
2024-07-13 23:05:22 +01:00
|
|
|
oneshot = "0.1.8"
|
2024-06-06 23:56:45 +01:00
|
|
|
portable-pty = "0.8.1"
|
2024-07-13 23:16:31 +01:00
|
|
|
ratatui = "0.27.0"
|
2024-07-13 23:05:17 +01:00
|
|
|
tui-term = "0.1.12"
|
2024-07-28 16:30:07 +01:00
|
|
|
include_dir = "0.7.4"
|
|
|
|
tempdir = "0.3.7"
|
2024-08-11 03:52:49 +01:00
|
|
|
serde = { version = "1.0.205", features = ["derive"] }
|
2024-08-15 07:09:31 +01:00
|
|
|
toml = "0.8.19"
|
2024-08-16 16:48:09 +01:00
|
|
|
which = "6.0.2"
|
2024-08-18 20:51:47 +01:00
|
|
|
unicode-width = "0.1.13"
|
2024-07-14 00:53:27 +01:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "linutil"
|
2024-07-28 16:30:07 +01:00
|
|
|
path = "src/main.rs"
|