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 = """
|
2016-11-28 08:52:51 +00:00
|
|
|
A library to build rich terminal user interfaces or dashboards
|
2016-11-08 09:29:42 +00:00
|
|
|
"""
|
2016-11-28 08:52:51 +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
|
|
|
|
2017-05-21 12:07:44 +00:00
|
|
|
[badges]
|
|
|
|
travis-ci = { repository = "fdehau/tui-rs" }
|
|
|
|
|
2016-11-28 08:52:51 +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"
|
2017-05-21 12:01:53 +00:00
|
|
|
cassowary = "0.2.1"
|
|
|
|
log = "0.3.7"
|
2016-12-25 15:13:09 +00:00
|
|
|
unicode-segmentation = "0.1.3"
|
|
|
|
unicode-width = "0.1.4"
|
2017-05-21 12:01:53 +00:00
|
|
|
termion = { version = "1.3.0", optional = true }
|
2016-11-28 08:52:51 +00:00
|
|
|
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"
|