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
935 B
TOML

8 years ago
[package]
name = "tui"
3 years ago
version = "0.16.0"
authors = ["Florian Dehau <work@fdehau.com>"]
description = """
A library to build rich terminal user interfaces or dashboards
"""
3 years ago
documentation = "https://docs.rs/tui/0.16.0/tui/"
keywords = ["tui", "terminal", "dashboard"]
repository = "https://github.com/fdehau/tui-rs"
3 years ago
readme = "README.md"
license = "MIT"
3 years ago
exclude = ["assets/*", ".github", "Makefile.toml", "CONTRIBUTING.md", "*.log", "tags"]
autoexamples = true
edition = "2018"
8 years ago
[badges]
[features]
default = ["crossterm"]
8 years ago
[dependencies]
bitflags = "1.3"
cassowary = "0.3"
unicode-segmentation = "1.2"
unicode-width = "0.1"
4 years ago
termion = { version = "1.5", optional = true }
crossterm = { version = "0.22", optional = true }
serde = { version = "1", "optional" = true, features = ["derive"]}
5 years ago
[dev-dependencies]
rand = "0.8"
argh = "0.1"
[[example]]
name = "termion_demo"
path = "examples/termion_demo.rs"
required-features = ["termion"]