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

31 lines
689 B
TOML

8 years ago
[package]
name = "tui"
8 years ago
version = "0.1.2"
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"
exclude = ["docs", ".travis.yml"]
8 years ago
[badges]
travis-ci = { repository = "fdehau/tui-rs" }
[features]
default = ["rustbox", "termion"]
8 years ago
[dependencies]
bitflags = "0.7.0"
cassowary = "0.2.1"
log = "0.3.7"
unicode-segmentation = "0.1.3"
unicode-width = "0.1.4"
termion = { version = "1.3.0", optional = true }
rustbox = { version = "0.9.0", optional = true }
[dev-dependencies]
log4rs = "0.5.2"
rand = "0.3.15"