2018-01-04 00:43:54 +11:00
|
|
|
[package]
|
|
|
|
name = "crossterm"
|
2019-10-23 01:33:38 +11:00
|
|
|
version = "0.12.1"
|
2018-08-25 20:00:39 +10:00
|
|
|
authors = ["T. Post"]
|
2018-05-20 22:44:14 +10:00
|
|
|
description = "An crossplatform terminal library for manipulating terminals."
|
2019-09-25 03:45:59 +10:00
|
|
|
repository = "https://github.com/crossterm-rs/crossterm"
|
2018-07-16 07:08:10 +10:00
|
|
|
documentation = "https://docs.rs/crossterm/"
|
2018-01-19 09:10:44 +11:00
|
|
|
license = "MIT"
|
2018-08-25 07:44:34 +10:00
|
|
|
keywords = ["console", "color", "cursor", "input", "terminal"]
|
2018-01-19 09:10:44 +11:00
|
|
|
exclude = ["target", "Cargo.lock"]
|
2018-05-20 22:44:14 +10:00
|
|
|
readme = "README.md"
|
2019-09-16 21:34:08 +10:00
|
|
|
edition = "2018"
|
2018-01-04 00:43:54 +11:00
|
|
|
|
2019-01-28 07:16:14 +11:00
|
|
|
[features]
|
2019-09-26 00:09:16 +10:00
|
|
|
default = ["cursor", "style", "terminal", "screen", "input"]
|
2019-10-23 01:33:38 +11:00
|
|
|
cursor = ["lazy_static", "input", "winapi/wincon", "winapi/winnt", "winapi/minwindef"]
|
|
|
|
style = ["lazy_static", "winapi/wincon"]
|
|
|
|
terminal = ["cursor"]
|
2019-11-01 06:54:14 +11:00
|
|
|
screen = ["lazy_static", "winapi/wincon", "winapi/minwindef"]
|
2019-10-23 01:33:38 +11:00
|
|
|
input = ["mio", "lazy_static", "screen", "winapi/winnt", "winapi/winuser"]
|
2019-01-28 07:16:14 +11:00
|
|
|
|
|
|
|
[dependencies]
|
2019-10-23 01:33:38 +11:00
|
|
|
lazy_static = { version = "1.4", optional = true }
|
|
|
|
serde = { version = "1.0.0", features = ["derive"], optional = true }
|
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
|
|
winapi = "0.3.8"
|
|
|
|
crossterm_winapi = "0.3.0"
|
|
|
|
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
|
|
libc = "0.2.51"
|
|
|
|
mio = { version = "0.6.19", optional = true }
|
2018-03-04 01:40:51 +11:00
|
|
|
|
2018-03-06 08:06:43 +11:00
|
|
|
[lib]
|
|
|
|
name = "crossterm"
|
2018-06-10 05:59:43 +10:00
|
|
|
path = "src/lib.rs"
|