taskwarrior-tui/Cargo.toml
Dheepak Krishnamurthy a7ddc2f39c Remove termion backend
2020-07-28 02:08:39 -06:00

23 lines
640 B
TOML

[package]
name = "taskwarrior-tui"
version = "0.2.0"
authors = ["Dheepak Krishnamurthy <me@kdheepak.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["crossterm-backend"]
crossterm-backend = ["tui/crossterm", "crossterm"]
[dependencies]
clap = "*"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
task-hookrs = "0.7"
rand = "0.7"
shlex = "0.1"
chrono = "0.4"
unicode-width = "0.1"
tui = { version = "0.10", optional = true, default-features = false }
crossterm = { version = "0.17", optional = true, default-features = false }