2015-05-09 19:18:25 +00:00
|
|
|
[package]
|
|
|
|
authors = ["Alexandre Bury <alexandre.bury@gmail.com>"]
|
2018-01-17 17:35:57 +00:00
|
|
|
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"
|
2018-01-17 17:35:57 +00:00
|
|
|
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"
|
2016-07-12 06:50:08 +00:00
|
|
|
repository = "https://github.com/gyscos/Cursive"
|
2018-04-02 05:58:25 +00:00
|
|
|
version = "0.9.0-alpha.0"
|
2017-02-08 19:57:28 +00:00
|
|
|
[badges.travis-ci]
|
|
|
|
repository = "gyscos/Cursive"
|
|
|
|
|
2015-05-15 00:41:17 +00:00
|
|
|
[dependencies]
|
2018-01-17 17:35:57 +00:00
|
|
|
enum-map = "0.2.24"
|
|
|
|
enumset = "0.3.3"
|
2018-01-05 13:48:17 +00:00
|
|
|
log = "0.4"
|
2017-01-11 01:39:21 +00:00
|
|
|
num = "0.1"
|
2018-01-15 21:58:26 +00:00
|
|
|
owning_ref = "0.3.3"
|
2017-07-07 17:49:51 +00:00
|
|
|
toml = "0.4"
|
2017-01-03 23:17:02 +00:00
|
|
|
unicode-segmentation = "1.0"
|
2016-09-01 07:22:04 +00:00
|
|
|
unicode-width = "0.1"
|
2018-01-07 23:48:20 +00:00
|
|
|
xi-unicode = "0.1.0"
|
2018-04-06 00:36:58 +00:00
|
|
|
libc = "0.2"
|
2015-05-09 19:18:25 +00:00
|
|
|
|
2018-02-20 22:50:13 +00:00
|
|
|
[dependencies.maplit]
|
|
|
|
optional = true
|
|
|
|
version = "1.0.0"
|
|
|
|
|
2017-11-19 08:40:56 +00:00
|
|
|
[dependencies.bear-lib-terminal]
|
|
|
|
optional = true
|
|
|
|
version = "1.3.1"
|
|
|
|
|
2017-03-05 22:45:21 +00:00
|
|
|
[dependencies.chan]
|
2016-12-14 06:10:00 +00:00
|
|
|
optional = true
|
2017-03-05 22:45:21 +00:00
|
|
|
version = "0.1.18"
|
2016-12-14 06:10:00 +00:00
|
|
|
|
2017-02-08 19:57:28 +00:00
|
|
|
[dependencies.chan-signal]
|
|
|
|
optional = true
|
2017-09-15 20:59:34 +00:00
|
|
|
version = "0.3"
|
2017-01-30 15:17:05 +00:00
|
|
|
|
2017-01-07 05:11:28 +00:00
|
|
|
[dependencies.ncurses]
|
2016-09-26 20:24:28 +00:00
|
|
|
features = ["wide"]
|
2016-10-09 23:20:52 +00:00
|
|
|
optional = true
|
2018-01-15 21:58:26 +00:00
|
|
|
version = "5.91.0"
|
2016-12-10 16:09:26 +00:00
|
|
|
|
2016-10-09 22:48:51 +00:00
|
|
|
[dependencies.pancurses]
|
2016-10-12 18:37:39 +00:00
|
|
|
features = ["wide"]
|
2016-10-09 23:20:52 +00:00
|
|
|
optional = true
|
2018-03-01 21:21:52 +00:00
|
|
|
version = "0.15"
|
2016-10-09 22:48:51 +00:00
|
|
|
|
2018-01-17 17:35:57 +00:00
|
|
|
[dependencies.pulldown-cmark]
|
|
|
|
default-features = false
|
|
|
|
optional = true
|
|
|
|
version = "0.1.0"
|
|
|
|
|
2016-10-09 22:48:51 +00:00
|
|
|
[dependencies.termion]
|
2016-10-11 23:23:08 +00:00
|
|
|
optional = true
|
2017-10-13 04:24:17 +00:00
|
|
|
version = "1.5.0"
|
2016-10-11 23:23:08 +00:00
|
|
|
|
2016-07-28 06:51:54 +00:00
|
|
|
[dev-dependencies]
|
2018-01-05 13:48:17 +00:00
|
|
|
rand = "0.4"
|
2018-04-10 18:46:02 +00:00
|
|
|
pretty-bytes = "0.2.2"
|
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"]
|
2017-03-07 21:42:32 +00:00
|
|
|
default = ["ncurses-backend"]
|
2018-01-17 17:35:57 +00:00
|
|
|
markdown = ["pulldown-cmark"]
|
2018-02-20 22:50:13 +00:00
|
|
|
ncurses-backend = ["ncurses", "maplit"]
|
2018-02-20 23:44:07 +00:00
|
|
|
pancurses-backend = ["pancurses", "maplit"]
|
2018-01-17 17:35:57 +00:00
|
|
|
termion-backend = ["termion", "chan", "chan-signal"]
|
2016-10-09 23:42:55 +00:00
|
|
|
|
2016-10-09 23:20:52 +00:00
|
|
|
[lib]
|
|
|
|
name = "cursive"
|