cursive/Cargo.toml
Alexandre Bury ad7606ca55 Switch backend with cargo features
Use `termion` feature and disable default features to use the termion
backend.
2016-10-09 16:02:26 -07:00

38 lines
774 B
TOML

[package]
authors = ["Alexandre Bury <alexandre.bury@gmail.com>"]
build = "build.rs"
description = "A TUI (Text User Interface) library focused on ease-of-use."
documentation = "https://gyscos.github.io/Cursive/cursive/index.html"
exclude = ["doc", "assets"]
keywords = ["ncurses", "TUI", "UI"]
license = "MIT"
name = "cursive"
readme = "Readme.md"
repository = "https://github.com/gyscos/Cursive"
version = "0.3.1"
[build-dependencies]
skeptic = "0.6"
[dependencies]
odds = "0.2"
termion = {version="1.1.1", optional=true}
toml = "0.2"
unicode-segmentation = "0.1"
unicode-width = "0.1"
[dependencies.ncurses]
features = ["wide"]
version = "5.82.0"
optional=true
[dev-dependencies]
rand = "0.3"
skeptic = "0.6"
[lib]
name = "cursive"
[features]
default = ["ncurses"]