1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
[package]
name = "libtiny_tui"
version = "0.1.0"
description = "A terminal UI for tiny"
edition = "2021"
[[bench]]
name = "bench"
harness = false
[features]
default = []
desktop-notifications = ["notify-rust"]
desktop-notifications-static-linking = ["notify-rust", "notify-rust/d_vendored"]
[dependencies]
libtiny_common = { path = "../libtiny_common" }
libtiny_wire = { path = "../libtiny_wire" }
log = "0.4"
notify-rust = { version = "4.11", optional = true, default-features = false, features = ["d"] }
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
tempfile = "3.1"
term_input = { path = "../term_input" }
termbox_simple = { path = "../termbox" }
time = "0.3"
tokio = { version = "1.17", default-features = false, features = ["signal", "macros"] }
tokio-stream = { version = "0.1", features = ["signal"] }
unicode-width = "0.2"
[dev-dependencies]
bencher = "0.1"
libc = "0.2"
mio = "1"
|