mirror of
https://github.com/kdheepak/taskwarrior-tui.git
synced 2025-08-24 14:36:42 +02:00
Initial commit
This commit is contained in:
commit
55befc91a0
7 changed files with 1637 additions and 0 deletions
25
Cargo.toml
Normal file
25
Cargo.toml
Normal file
|
@ -0,0 +1,25 @@
|
|||
[package]
|
||||
name = "taskwarrior-tui"
|
||||
version = "0.1.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 = ["termion-backend"]
|
||||
termion-backend = ["tui/termion", "termion"]
|
||||
crossterm-backend = ["tui/crossterm", "crossterm"]
|
||||
|
||||
[dependencies]
|
||||
clap = "*"
|
||||
tui = "0.10.0"
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde_json = "1.0"
|
||||
task-hookrs = "0.7.0"
|
||||
termion = { version = "1.5.4", optional = true }
|
||||
crossterm = { version = "0.14.2", optional = true }
|
||||
rand = "0.7"
|
||||
shlex = "0.1.1"
|
||||
chrono = "0.4"
|
||||
unicode-width = "0.1"
|
Loading…
Add table
Add a link
Reference in a new issue