cursive/Cargo.toml

79 lines
1.3 KiB
TOML
Raw Normal View History

2015-05-09 19:18:25 +00:00
[package]
authors = ["Alexandre Bury <alexandre.bury@gmail.com>"]
2017-11-19 08:40:56 +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"
2017-11-19 08:40:56 +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"
version = "0.7.6-alpha.0"
[badges.travis-ci]
repository = "gyscos/Cursive"
[dependencies]
log = "0.3"
maplit = "1.0.0"
num = "0.1"
2017-07-07 17:49:51 +00:00
owning_ref = "0.3"
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"
2015-05-09 19:18:25 +00:00
2017-11-19 08:40:56 +00:00
[dependencies.bear-lib-terminal]
optional = true
version = "1.3.1"
[dependencies.chan]
optional = true
version = "0.1.18"
[dependencies.chan-signal]
optional = true
2017-09-15 20:59:34 +00:00
version = "0.3"
2017-01-30 15:17:05 +00:00
[dependencies.ncurses]
features = ["wide"]
2016-10-09 23:20:52 +00:00
optional = true
2017-11-20 04:13:57 +00:00
version = "5.87.0"
[dependencies.pancurses]
2016-10-12 18:37:39 +00:00
features = ["wide"]
2016-10-09 23:20:52 +00:00
optional = true
2017-11-19 05:31:01 +00:00
version = "0.13"
[dependencies.termion]
2016-10-11 23:23:08 +00:00
optional = true
version = "1.5.0"
2016-10-11 23:23:08 +00:00
[dev-dependencies]
rand = "0.3"
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"]
ncurses-backend = ["ncurses"]
2017-02-01 17:59:17 +00:00
pancurses-backend = ["pancurses"]
2017-11-19 08:40:56 +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"