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 = """
|
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"
|
2017-12-26 21:13:40 +00:00
|
|
|
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]
|
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]
|
2017-12-26 15:55:13 +00:00
|
|
|
bitflags = "1.0.1"
|
|
|
|
cassowary = "0.3.0"
|
2018-05-25 11:21:36 +00:00
|
|
|
itertools = "0.7.8"
|
2018-04-01 17:42:50 +00:00
|
|
|
log = "0.4.1"
|
2018-08-12 20:13:32 +00:00
|
|
|
either = "1.5.0"
|
2017-12-26 15:55:13 +00:00
|
|
|
unicode-segmentation = "1.2.0"
|
2016-12-25 15:13:09 +00:00
|
|
|
unicode-width = "0.1.4"
|
2017-12-26 15:55:13 +00:00
|
|
|
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"
|
2017-05-25 13:17:08 +00:00
|
|
|
|
2017-06-15 06:51:02 +00:00
|
|
|
[[example]]
|
|
|
|
name = "barchart"
|
|
|
|
path = "examples/barchart.rs"
|
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "block"
|
|
|
|
path = "examples/block.rs"
|
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "canvas"
|
|
|
|
path = "examples/canvas.rs"
|
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "chart"
|
|
|
|
path = "examples/chart.rs"
|
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "custom_widget"
|
|
|
|
path = "examples/custom_widget.rs"
|
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "demo"
|
|
|
|
path = "examples/demo.rs"
|
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "gauge"
|
|
|
|
path = "examples/gauge.rs"
|
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "list"
|
|
|
|
path = "examples/list.rs"
|
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "paragraph"
|
|
|
|
path = "examples/paragraph.rs"
|
|
|
|
|
2017-05-25 13:17:08 +00:00
|
|
|
[[example]]
|
|
|
|
name = "rustbox"
|
|
|
|
path = "examples/rustbox.rs"
|
|
|
|
required-features = ["rustbox"]
|
2017-06-15 06:51:02 +00:00
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "sparkline"
|
|
|
|
path = "examples/sparkline.rs"
|
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "table"
|
|
|
|
path = "examples/table.rs"
|
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "tabs"
|
|
|
|
path = "examples/tabs.rs"
|
2018-01-27 09:27:26 +00:00
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "user_input"
|
|
|
|
path = "examples/user_input.rs"
|
2018-04-01 15:57:26 +00:00
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "layout"
|
|
|
|
path = "examples/layout.rs"
|