2015-05-09 19:18:25 +00:00
|
|
|
[package]
|
|
|
|
authors = ["Alexandre Bury <alexandre.bury@gmail.com>"]
|
2016-10-08 23:47:15 +00:00
|
|
|
build = "build.rs"
|
2016-08-03 17:47:13 +00:00
|
|
|
description = "A TUI (Text User Interface) library focused on ease-of-use."
|
2016-06-25 23:53:16 +00:00
|
|
|
documentation = "https://gyscos.github.io/Cursive/cursive/index.html"
|
2016-08-02 07:32:16 +00:00
|
|
|
exclude = ["doc", "assets"]
|
2016-08-03 17:47:13 +00:00
|
|
|
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"
|
2016-10-05 00:59:08 +00:00
|
|
|
version = "0.3.1"
|
2016-10-08 23:47:15 +00:00
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
skeptic = "0.6"
|
2015-05-09 19:18:25 +00:00
|
|
|
|
2015-05-15 00:41:17 +00:00
|
|
|
[dependencies]
|
2016-09-01 07:22:04 +00:00
|
|
|
odds = "0.2"
|
|
|
|
toml = "0.2"
|
|
|
|
unicode-segmentation = "0.1"
|
|
|
|
unicode-width = "0.1"
|
2015-05-09 19:18:25 +00:00
|
|
|
|
2016-09-26 20:24:28 +00:00
|
|
|
[dependencies.ncurses]
|
2016-10-09 22:48:51 +00:00
|
|
|
version = "5.83.0"
|
2016-09-26 20:24:28 +00:00
|
|
|
features = ["wide"]
|
2016-10-09 23:20:52 +00:00
|
|
|
optional = true
|
|
|
|
|
2016-10-09 22:48:51 +00:00
|
|
|
[dependencies.pancurses]
|
2016-10-10 18:51:32 +00:00
|
|
|
version = "0.4.0"
|
2016-10-09 23:20:52 +00:00
|
|
|
optional = true
|
2016-10-09 22:48:51 +00:00
|
|
|
|
|
|
|
[dependencies.termion]
|
2016-10-09 23:20:52 +00:00
|
|
|
version = "1.1.1"
|
2016-10-09 22:48:51 +00:00
|
|
|
optional = true
|
2016-09-26 20:24:28 +00:00
|
|
|
|
2016-07-28 06:51:54 +00:00
|
|
|
[dev-dependencies]
|
|
|
|
rand = "0.3"
|
2016-10-02 22:36:40 +00:00
|
|
|
skeptic = "0.6"
|
2016-09-28 22:22:21 +00:00
|
|
|
|
2016-10-09 23:42:55 +00:00
|
|
|
[features]
|
|
|
|
default = ["ncurses"]
|
|
|
|
|
2016-10-09 23:20:52 +00:00
|
|
|
[lib]
|
|
|
|
name = "cursive"
|