Refactor Cargo.toml to only enable "termion" feature by default

pull/12/head
Florian Dehau 7 years ago
parent 28accd529a
commit 419f2aadb2

@ -14,7 +14,7 @@ exclude = ["docs", ".travis.yml"]
travis-ci = { repository = "fdehau/tui-rs" }
[features]
default = ["rustbox", "termion"]
default = ["termion"]
[dependencies]
bitflags = "0.7.0"
@ -28,3 +28,8 @@ rustbox = { version = "0.9.0", optional = true }
[dev-dependencies]
log4rs = "0.5.2"
rand = "0.3.15"
[[example]]
name = "rustbox"
path = "examples/rustbox.rs"
required-features = ["rustbox"]

Loading…
Cancel
Save