cursive/Cargo.toml

59 lines
1.1 KiB
TOML
Raw Normal View History

2015-05-09 19:18:25 +00:00
[package]
authors = ["Alexandre Bury <alexandre.bury@gmail.com>"]
build = "build.rs"
2016-08-03 17:47:13 +00:00
description = "A TUI (Text User Interface) library focused on ease-of-use."
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"
2017-01-05 18:36:47 +00:00
version = "0.3.6"
[build-dependencies]
[build-dependencies.skeptic]
optional = true
version = "0.6"
2015-05-09 19:18:25 +00:00
[dependencies]
chan = "0.1.18"
chan-signal = "0.1"
2016-09-01 07:22:04 +00:00
odds = "0.2"
toml = "0.2"
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
[dependencies.bear-lib-terminal]
optional = true
version = "1.3.1"
[target.'cfg(target_os = "linux")'.dependencies.ncurses]
features = ["wide"]
2016-10-09 23:20:52 +00:00
optional = true
2016-11-25 07:42:24 +00:00
version = "5.84.0"
2016-10-09 23:20:52 +00:00
[target.'cfg(target_os = "macos")'.dependencies.ncurses]
optional = true
version = "5.84.0"
[dependencies.pancurses]
2016-10-12 18:37:39 +00:00
features = ["wide"]
2016-10-09 23:20:52 +00:00
optional = true
2016-11-25 07:42:24 +00:00
version = "0.7"
[dependencies.termion]
2016-10-11 23:23:08 +00:00
optional = true
version = "1.1.1"
2016-10-11 23:23:08 +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"