ratatui/Cargo.toml

39 lines
831 B
TOML
Raw Normal View History

2016-10-09 17:46:53 +00:00
[package]
name = "tui"
2018-06-09 09:42:27 +00:00
version = "0.2.3"
2016-11-08 09:29:42 +00:00
authors = ["Florian Dehau <work@fdehau.com>"]
description = """
A library to build rich terminal user interfaces or dashboards
2016-11-08 09:29:42 +00:00
"""
keywords = ["tui", "terminal", "dashboard"]
2016-11-08 09:29:42 +00:00
repository = "https://github.com/fdehau/tui-rs"
license = "MIT"
2017-12-26 21:13:40 +00:00
exclude = ["docs/*", ".travis.yml"]
autoexamples = true
2016-10-09 17:46:53 +00:00
2017-05-21 12:07:44 +00:00
[badges]
travis-ci = { repository = "fdehau/tui-rs" }
[features]
default = ["termion"]
2016-10-09 17:46:53 +00:00
[dependencies]
bitflags = "1.0.1"
cassowary = "0.3.0"
itertools = "0.7.8"
2018-04-01 17:42:50 +00:00
log = "0.4.1"
either = "1.5.0"
unicode-segmentation = "1.2.0"
2016-12-25 15:13:09 +00:00
unicode-width = "0.1.4"
termion = { version = "1.5.1", optional = true }
2018-04-01 17:42:50 +00:00
rustbox = { version = "0.11.0", optional = true }
2016-10-12 17:43:39 +00:00
[dev-dependencies]
2018-04-01 17:42:50 +00:00
stderrlog = "0.3.0"
rand = "0.4.2"
[[example]]
name = "rustbox"
path = "examples/rustbox.rs"
required-features = ["rustbox"]