Skip to content

Commit

Permalink
Disable default features for tui in tui-react
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
mibac138 authored and Byron committed Apr 3, 2020
1 parent 70b043a commit 8467a49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tui-react/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit 8467a49

Please sign in to comment.