ratatui/Cargo.toml

39 lines
935 B
TOML
Raw Normal View History

2016-10-09 17:46:53 +00:00
[package]
name = "tui"
2021-08-01 18:02:18 +00:00
version = "0.16.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
"""
2021-08-01 18:02:18 +00:00
documentation = "https://docs.rs/tui/0.16.0/tui/"
keywords = ["tui", "terminal", "dashboard"]
2016-11-08 09:29:42 +00:00
repository = "https://github.com/fdehau/tui-rs"
2021-01-01 13:35:07 +00:00
readme = "README.md"
2016-11-08 09:29:42 +00:00
license = "MIT"
2021-01-01 13:35:07 +00:00
exclude = ["assets/*", ".github", "Makefile.toml", "CONTRIBUTING.md", "*.log", "tags"]
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]
[features]
default = ["crossterm"]
2016-10-09 17:46:53 +00:00
[dependencies]
2021-10-17 13:51:27 +00:00
bitflags = "1.3"
2018-09-04 20:00:45 +00:00
cassowary = "0.3"
unicode-segmentation = "1.2"
unicode-width = "0.1"
2020-04-14 17:35:27 +00:00
termion = { version = "1.5", optional = true }
crossterm = { version = "0.22", optional = true }
serde = { version = "1", "optional" = true, features = ["derive"]}
2019-05-15 17:33:11 +00:00
2016-10-12 17:43:39 +00:00
[dev-dependencies]
2021-05-02 16:51:59 +00:00
rand = "0.8"
argh = "0.1"
[[example]]
2019-02-10 21:35:44 +00:00
name = "termion_demo"
path = "examples/termion_demo.rs"
required-features = ["termion"]