Make crossterm default

This commit is contained in:
Dheepak Krishnamurthy 2020-07-28 00:58:43 -06:00
parent 2a08fb2f33
commit a0c6a94854
5 changed files with 141 additions and 82 deletions

View file

@ -7,9 +7,9 @@ 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"]
default = ["crossterm-backend"]
crossterm-backend = ["tui/crossterm", "crossterm"]
termion-backend = ["tui/termion", "termion"]
[dependencies]
clap = "*"