mirror of
https://github.com/FliegendeWurst/cursive.git
synced 2024-11-08 10:20:39 +00:00
34ecb67f1b
Add a backend using the crossterm library.
92 lines
1.9 KiB
TOML
92 lines
1.9 KiB
TOML
[package]
|
|
authors = ["Alexandre Bury <alexandre.bury@gmail.com>"]
|
|
categories = ["command-line-interface", "gui"]
|
|
description = "A TUI (Text User Interface) library focused on ease-of-use."
|
|
documentation = "https://docs.rs/cursive"
|
|
exclude = ["doc/**", "assets/**", "examples/**"]
|
|
keywords = ["ncurses", "TUI", "UI"]
|
|
license = "MIT"
|
|
name = "cursive"
|
|
readme = "Readme.md"
|
|
repository = "https://github.com/gyscos/Cursive"
|
|
version = "0.11.1"
|
|
edition = "2018"
|
|
|
|
[badges.travis-ci]
|
|
repository = "gyscos/Cursive"
|
|
|
|
[badges.appveyor]
|
|
repository = "gyscos/Cursive"
|
|
|
|
[dependencies]
|
|
enum-map = "0.5.0"
|
|
enumset = "0.3.17"
|
|
log = "0.4.6"
|
|
owning_ref = "0.4.0"
|
|
toml = "0.5.0"
|
|
unicode-segmentation = "1.2.1"
|
|
unicode-width = "0.1.5"
|
|
xi-unicode = "0.1.0"
|
|
libc = "0.2.51"
|
|
term_size = { version = "0.3.1", optional = true }
|
|
crossbeam-channel = "0.3.8"
|
|
lazy_static = "1.3.0"
|
|
chrono = "0.4.6"
|
|
hashbrown = "0.2.1"
|
|
cfg-if = "0.1.7"
|
|
|
|
[dependencies.num]
|
|
default-features = false
|
|
version = "0.2.0"
|
|
|
|
[dependencies.maplit]
|
|
optional = true
|
|
version = "1.0.1"
|
|
|
|
[dependencies.bear-lib-terminal]
|
|
optional = true
|
|
version = "2.0.0"
|
|
|
|
[dependencies.ncurses]
|
|
features = ["wide"]
|
|
optional = true
|
|
version = "5.99.0"
|
|
|
|
[dependencies.pancurses]
|
|
features = ["wide"]
|
|
optional = true
|
|
version = "0.16.1"
|
|
|
|
[dependencies.pulldown-cmark]
|
|
default-features = false
|
|
optional = true
|
|
version = "0.4.1"
|
|
|
|
[dependencies.termion]
|
|
optional = true
|
|
version = "1.5.1"
|
|
|
|
[dependencies.crossterm]
|
|
optional = true
|
|
version = "0.9.2"
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
signal-hook = "0.1.8"
|
|
|
|
[dev-dependencies]
|
|
rand = "0.6.5"
|
|
pretty-bytes = "0.2.2"
|
|
|
|
[features]
|
|
blt-backend = ["bear-lib-terminal"]
|
|
default = ["ncurses-backend"]
|
|
markdown = ["pulldown-cmark"]
|
|
ncurses-backend = ["ncurses", "maplit", "term_size"]
|
|
pancurses-backend = ["pancurses", "maplit", "term_size"]
|
|
termion-backend = ["termion"]
|
|
crossterm-backend = ["crossterm"]
|
|
unstable_scroll = []
|
|
|
|
[lib]
|
|
name = "cursive"
|