ratatui/Cargo.toml

54 lines
1.1 KiB
TOML
Raw Normal View History

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 = """
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"
2018-09-09 06:55:51 +00:00
exclude = ["assets/*", ".travis.yml"]
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
[features]
default = ["termion"]
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 }
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"
failure = "0.1"
structopt = "0.2"
[[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"
required-features = ["rustbox"]
[[example]]
2019-02-10 21:35:44 +00:00
name = "crossterm_demo"
path = "examples/crossterm_demo.rs"
required-features = ["crossterm"]