From ae5dcd849fcb6986e74d616ac0d551c15a48b655 Mon Sep 17 00:00:00 2001 From: Dheepak Krishnamurthy Date: Mon, 27 Jul 2020 03:03:26 -0600 Subject: [PATCH] Add default-features = false for tui --- Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index a96146b..0478e72 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,13 +13,13 @@ 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", optional = true, default-features = false } -crossterm = { version = "0.17", optional = true, default-features = false } rand = "0.7" shlex = "0.1.1" chrono = "0.4" unicode-width = "0.1" +tui = { version = "0.10.0", optional = true, default-features = false } +termion = { version = "1.5", optional = true, default-features = false } +crossterm = { version = "0.17", optional = true, default-features = false }