tui-rs/Cargo.toml

28 lines
634 B
TOML
Raw Normal View History

2016-10-09 17:46:53 +00:00
[package]
name = "tui"
2016-12-25 15:15:43 +00:00
version = "0.1.2"
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"
exclude = ["docs", ".travis.yml"]
2016-10-09 17:46:53 +00:00
[features]
default = ["rustbox", "termion"]
2016-10-09 17:46:53 +00:00
[dependencies]
2016-12-25 15:13:09 +00:00
bitflags = "0.7.0"
2016-10-09 17:46:53 +00:00
cassowary = "0.2.0"
2016-12-25 15:13:09 +00:00
log = "0.3.6"
unicode-segmentation = "0.1.3"
unicode-width = "0.1.4"
termion = { version = "1.1.4", optional = true }
rustbox = { version = "0.9.0", optional = true }
2016-10-12 17:43:39 +00:00
[dev-dependencies]
2016-12-25 15:13:09 +00:00
log4rs = "0.5.2"
rand = "0.3.15"