You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tui-rs/Cargo.toml

39 lines
831 B
TOML

8 years ago
[package]
name = "tui"
6 years ago
version = "0.2.3"
authors = ["Florian Dehau <work@fdehau.com>"]
description = """
A library to build rich terminal user interfaces or dashboards
"""
keywords = ["tui", "terminal", "dashboard"]
repository = "https://github.com/fdehau/tui-rs"
license = "MIT"
7 years ago
exclude = ["docs/*", ".travis.yml"]
autoexamples = true
8 years ago
[badges]
travis-ci = { repository = "fdehau/tui-rs" }
[features]
default = ["termion"]
8 years ago
[dependencies]
bitflags = "1.0.1"
cassowary = "0.3.0"
itertools = "0.7.8"
6 years ago
log = "0.4.1"
either = "1.5.0"
unicode-segmentation = "1.2.0"
unicode-width = "0.1.4"
termion = { version = "1.5.1", optional = true }
6 years ago
rustbox = { version = "0.11.0", optional = true }
[dev-dependencies]
6 years ago
stderrlog = "0.3.0"
rand = "0.4.2"
[[example]]
name = "rustbox"
path = "examples/rustbox.rs"
required-features = ["rustbox"]