mirror of
https://github.com/fdehau/tui-rs.git
synced 2024-10-30 21:20:22 +00:00
54 lines
1.1 KiB
TOML
54 lines
1.1 KiB
TOML
[package]
|
|
name = "tui"
|
|
version = "0.4.0"
|
|
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 = ["assets/*", ".travis.yml"]
|
|
autoexamples = true
|
|
edition = "2018"
|
|
|
|
[badges]
|
|
travis-ci = { repository = "fdehau/tui-rs" }
|
|
appveyor = { repository = "fdehau/tui-rs" }
|
|
|
|
[features]
|
|
default = ["termion"]
|
|
|
|
[dependencies]
|
|
bitflags = "1.0"
|
|
cassowary = "0.3"
|
|
itertools = "0.8"
|
|
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 }
|
|
crossterm = { version = "0.6", optional = true }
|
|
|
|
[dev-dependencies]
|
|
stderrlog = "0.4"
|
|
rand = "0.6"
|
|
failure = "0.1"
|
|
structopt = "0.2"
|
|
|
|
[[example]]
|
|
name = "termion_demo"
|
|
path = "examples/termion_demo.rs"
|
|
required-features = ["termion"]
|
|
|
|
[[example]]
|
|
name = "rustbox_demo"
|
|
path = "examples/rustbox_demo.rs"
|
|
required-features = ["rustbox"]
|
|
|
|
[[example]]
|
|
name = "crossterm_demo"
|
|
path = "examples/crossterm_demo.rs"
|
|
required-features = ["crossterm"]
|