2016-10-09 17:46:53 +00:00
|
|
|
[package]
|
|
|
|
name = "tui"
|
2018-09-08 07:23:22 +00:00
|
|
|
version = "0.3.0-beta.1"
|
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"
|
2018-09-09 06:55:51 +00:00
|
|
|
exclude = ["assets/*", ".travis.yml"]
|
2018-09-01 12:05:33 +00:00
|
|
|
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" }
|
|
|
|
|
2016-11-28 08:52:51 +00:00
|
|
|
[features]
|
2017-05-25 13:17:08 +00:00
|
|
|
default = ["termion"]
|
2016-11-28 08:52:51 +00:00
|
|
|
|
2016-10-09 17:46:53 +00:00
|
|
|
[dependencies]
|
2018-09-04 20:00:45 +00:00
|
|
|
bitflags = "1.0"
|
|
|
|
cassowary = "0.3"
|
|
|
|
itertools = "0.7"
|
|
|
|
log = "0.4"
|
|
|
|
either = "1.5"
|
|
|
|
unicode-segmentation = "1.2"
|
|
|
|
unicode-width = "0.1"
|
|
|
|
termion = { version = "1.5", optional = true }
|
|
|
|
rustbox = { version = "0.11", optional = true }
|
2018-09-04 17:55:35 +00:00
|
|
|
crossterm = { version = "0.4", optional = true }
|
2016-10-12 17:43:39 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2018-09-04 20:00:45 +00:00
|
|
|
stderrlog = "0.4"
|
|
|
|
rand = "0.4"
|
2018-09-23 18:59:51 +00:00
|
|
|
failure = "0.1"
|
2017-05-25 13:17:08 +00:00
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "rustbox"
|
|
|
|
path = "examples/rustbox.rs"
|
|
|
|
required-features = ["rustbox"]
|
2018-09-04 17:55:35 +00:00
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "crossterm"
|
|
|
|
path = "examples/crossterm.rs"
|
|
|
|
required-features = ["crossterm"]
|