2016-10-09 17:46:53 +00:00
|
|
|
[package]
|
|
|
|
name = "tui"
|
2019-02-03 22:03:48 +00:00
|
|
|
version = "0.4.0"
|
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
|
2019-01-06 11:57:06 +00:00
|
|
|
edition = "2018"
|
2016-10-09 17:46:53 +00:00
|
|
|
|
2017-05-21 12:07:44 +00:00
|
|
|
[badges]
|
|
|
|
travis-ci = { repository = "fdehau/tui-rs" }
|
2019-02-03 18:00:49 +00:00
|
|
|
appveyor = { repository = "fdehau/tui-rs" }
|
2017-05-21 12:07:44 +00:00
|
|
|
|
2016-11-28 08:52:51 +00:00
|
|
|
[features]
|
2017-05-25 13:17:08 +00:00
|
|
|
default = ["termion"]
|
2019-01-24 18:45:59 +00:00
|
|
|
curses = ["easycurses", "pancurses"]
|
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"
|
2019-02-03 21:06:54 +00:00
|
|
|
itertools = "0.8"
|
2018-09-04 20:00:45 +00:00
|
|
|
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 }
|
2019-01-13 16:31:54 +00:00
|
|
|
crossterm = { version = "0.6", optional = true }
|
2019-01-24 18:45:59 +00:00
|
|
|
easycurses = { version = "0.12.2", optional = true }
|
|
|
|
pancurses = { version = "0.16.1", optional = true, features = ["win32a"] }
|
2016-10-12 17:43:39 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2018-09-04 20:00:45 +00:00
|
|
|
stderrlog = "0.4"
|
2018-11-25 20:49:37 +00:00
|
|
|
rand = "0.6"
|
2018-09-23 18:59:51 +00:00
|
|
|
failure = "0.1"
|
2019-02-03 21:06:33 +00:00
|
|
|
structopt = "0.2"
|
2017-05-25 13:17:08 +00:00
|
|
|
|
|
|
|
[[example]]
|
2019-02-10 21:35:44 +00:00
|
|
|
name = "termion_demo"
|
|
|
|
path = "examples/termion_demo.rs"
|
|
|
|
required-features = ["termion"]
|
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "rustbox_demo"
|
|
|
|
path = "examples/rustbox_demo.rs"
|
2017-05-25 13:17:08 +00:00
|
|
|
required-features = ["rustbox"]
|
2018-09-04 17:55:35 +00:00
|
|
|
|
|
|
|
[[example]]
|
2019-02-10 21:35:44 +00:00
|
|
|
name = "crossterm_demo"
|
|
|
|
path = "examples/crossterm_demo.rs"
|
2018-09-04 17:55:35 +00:00
|
|
|
required-features = ["crossterm"]
|
2019-01-24 18:45:59 +00:00
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "curses"
|
|
|
|
path = "examples/curses.rs"
|
|
|
|
required-features = ["curses"]
|