Skip to content

Commit

Permalink
Refactor Cargo.toml to only enable "termion" feature by default
Browse files Browse the repository at this point in the history
  • Loading branch information
fdehau committed Jun 15, 2017
1 parent 28accd5 commit 419f2aa
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"]

0 comments on commit 419f2aa

Please sign in to comment.