mirror of
https://github.com/FliegendeWurst/cursive.git
synced 2024-11-09 19:00:46 +00:00
70 lines
1.3 KiB
TOML
70 lines
1.3 KiB
TOML
[package]
|
|
authors = ["Alexandre Bury <alexandre.bury@gmail.com>"]
|
|
build = "build.rs"
|
|
categories = ["command-line-interface", "gui"]
|
|
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.6.0"
|
|
|
|
[badges.travis-ci]
|
|
repository = "gyscos/Cursive"
|
|
|
|
[build-dependencies.skeptic]
|
|
optional = true
|
|
version = "0.7"
|
|
|
|
[dependencies]
|
|
num = "0.1"
|
|
odds = "0.2"
|
|
owning_ref = "0.2.4"
|
|
toml = "0.3"
|
|
unicode-segmentation = "1.0"
|
|
unicode-width = "0.1"
|
|
|
|
[dependencies.chan]
|
|
optional = true
|
|
version = "0.1.18"
|
|
|
|
[dependencies.chan-signal]
|
|
optional = true
|
|
version = "0.2"
|
|
|
|
[dependencies.bear-lib-terminal]
|
|
optional = true
|
|
version = "1.3.1"
|
|
|
|
[dependencies.ncurses]
|
|
features = ["wide"]
|
|
optional = true
|
|
version = "5.85.0"
|
|
|
|
[dependencies.pancurses]
|
|
features = ["wide"]
|
|
optional = true
|
|
version = "0.8"
|
|
|
|
[dependencies.termion]
|
|
optional = true
|
|
version = "1.3.0"
|
|
|
|
[dev-dependencies]
|
|
rand = "0.3"
|
|
skeptic = "0.7"
|
|
|
|
[features]
|
|
default = ["ncurses-backend"]
|
|
|
|
ncurses-backend = ["ncurses"]
|
|
termion-backend = ["termion", "chan", "chan-signal"]
|
|
pancurses-backend = ["pancurses"]
|
|
blt-backend = ["bear-lib-terminal"]
|
|
|
|
[lib]
|
|
name = "cursive"
|