cursive/Cargo.toml

96 lines
1.9 KiB
TOML
Raw Normal View History

2015-05-09 19:18:25 +00:00
[package]
authors = ["Alexandre Bury <alexandre.bury@gmail.com>"]
categories = ["command-line-interface", "gui"]
2016-08-03 17:47:13 +00:00
description = "A TUI (Text User Interface) library focused on ease-of-use."
2017-11-21 05:24:28 +00:00
documentation = "https://docs.rs/cursive"
exclude = ["doc/**", "assets/**", "examples/**"]
keywords = ["ncurses", "TUI", "UI"]
2015-12-22 05:09:16 +00:00
license = "MIT"
2015-05-09 19:18:25 +00:00
name = "cursive"
2015-12-22 05:09:16 +00:00
readme = "Readme.md"
2019-06-19 18:39:11 +00:00
repository = "https://github.com/gyscos/cursive"
version = "0.13.1-alpha.0"
edition = "2018"
2018-06-19 06:04:24 +00:00
[package.metadata.docs.rs]
features = ["unstable_scroll"]
[badges.travis-ci]
2019-06-19 18:39:11 +00:00
repository = "gyscos/cursive"
2018-06-19 06:04:24 +00:00
[badges.appveyor]
2019-06-19 18:39:11 +00:00
repository = "gyscos/cursive"
2018-06-19 06:04:24 +00:00
[dependencies]
2019-07-29 20:11:30 +00:00
enum-map = "0.6.0"
enumset = "0.4.0"
log = "0.4.8"
2019-01-30 22:54:01 +00:00
owning_ref = "0.4.0"
2019-07-29 20:11:30 +00:00
toml = "0.5.1"
unicode-segmentation = "1.3.0"
2019-01-30 22:54:01 +00:00
unicode-width = "0.1.5"
2019-07-29 20:11:30 +00:00
xi-unicode = "0.2.0"
libc = "0.2.60"
2019-01-30 22:54:01 +00:00
term_size = { version = "0.3.1", optional = true }
2019-07-29 20:11:30 +00:00
crossbeam-channel = "0.3.9"
lazy_static = "1.3.0"
2019-07-29 20:11:30 +00:00
chrono = "0.4.7"
hashbrown = "0.5.0"
cfg-if = "0.1.9"
2018-06-18 00:26:03 +00:00
2018-06-05 04:32:02 +00:00
[dependencies.num]
default-features = false
2019-01-30 22:54:01 +00:00
version = "0.2.0"
2018-06-05 04:32:02 +00:00
[dependencies.maplit]
optional = true
2019-01-30 22:54:01 +00:00
version = "1.0.1"
2017-11-19 08:40:56 +00:00
[dependencies.bear-lib-terminal]
optional = true
2019-01-30 22:54:01 +00:00
version = "2.0.0"
2017-11-19 08:40:56 +00:00
[dependencies.ncurses]
features = ["wide"]
2016-10-09 23:20:52 +00:00
optional = true
2019-02-25 01:31:58 +00:00
version = "5.99.0"
[dependencies.pancurses]
2016-10-12 18:37:39 +00:00
features = ["wide"]
2016-10-09 23:20:52 +00:00
optional = true
2019-01-30 22:54:01 +00:00
version = "0.16.1"
[dependencies.pulldown-cmark]
default-features = false
optional = true
2019-07-29 20:11:30 +00:00
version = "0.5.3"
[dependencies.termion]
2016-10-11 23:23:08 +00:00
optional = true
2019-07-29 20:11:30 +00:00
version = "1.5.3"
2016-10-11 23:23:08 +00:00
[dependencies.crossterm]
optional = true
2019-07-29 20:11:30 +00:00
version = "0.10.1"
2019-01-30 22:54:01 +00:00
[target.'cfg(unix)'.dependencies]
2019-07-29 20:11:30 +00:00
signal-hook = "0.1.10"
2018-06-19 06:13:02 +00:00
[dev-dependencies]
2019-07-29 20:11:30 +00:00
rand = "0.7.0"
2019-01-30 22:54:01 +00:00
pretty-bytes = "0.2.2"
2019-07-29 20:11:30 +00:00
atty = "0.2.13"
2016-09-28 22:22:21 +00:00
2016-10-09 23:42:55 +00:00
[features]
2017-11-19 08:40:56 +00:00
blt-backend = ["bear-lib-terminal"]
default = ["ncurses-backend"]
markdown = ["pulldown-cmark"]
2018-06-18 23:00:58 +00:00
ncurses-backend = ["ncurses", "maplit", "term_size"]
pancurses-backend = ["pancurses", "maplit", "term_size"]
2018-06-18 00:26:03 +00:00
termion-backend = ["termion"]
crossterm-backend = ["crossterm"]
unstable_scroll = []
2016-10-09 23:42:55 +00:00
2016-10-09 23:20:52 +00:00
[lib]
name = "cursive"