summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael <5672750+mibac138@users.noreply.github.com>2020-04-03 09:22:27 +0200
committerSebastian Thiel <sebastian.thiel@icloud.com>2020-04-03 15:28:52 +0800
commit8467a49796e56a874837dc810dc2e534ec03f0a3 (patch)
tree218f3b76754da6a064868ef78cd18d7da9a95da9
parent70b043abfd4a5765b4966cff65a7b67c518528ef (diff)
Disable default features for tui in tui-react
The only default feature in tui is the termion backend, but tui-react doesn't depend on any backend. With the termion backend enabled by default you can't change it to another backend in other crates.
-rw-r--r--tui-react/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/tui-react/Cargo.toml b/tui-react/Cargo.toml
index d41605b..3e77df1 100644
--- a/tui-react/Cargo.toml
+++ b/tui-react/Cargo.toml
@@ -9,7 +9,7 @@ readme = "README.md"
license = "MIT"
[dependencies]
-tui = "0.8.0"
+tui = { version = "0.8.0", default-features = false }
log = "0.4.6"
unicode-segmentation = "1.6.0"
unicode-width = "0.1.7"