2019-01-28 07:16:14 +11:00
|
|
|
[package]
|
|
|
|
name = "crossterm_input"
|
2019-09-25 03:45:59 +10:00
|
|
|
version = "0.4.0"
|
2019-01-28 07:16:14 +11:00
|
|
|
authors = ["T. Post"]
|
|
|
|
description = "A cross-platform library for reading userinput."
|
2019-09-25 03:45:59 +10:00
|
|
|
repository = "https://github.com/crossterm-rs/crossterm"
|
2019-01-28 07:16:14 +11:00
|
|
|
documentation = "https://docs.rs/crossterm_input/"
|
|
|
|
license = "MIT"
|
2019-03-11 10:09:41 +11:00
|
|
|
keywords = ["input", "keys", "crossterm", "events", "terminal"]
|
2019-01-28 07:16:14 +11:00
|
|
|
exclude = ["target", "Cargo.lock"]
|
|
|
|
readme = "README.md"
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
2019-09-25 03:45:59 +10:00
|
|
|
winapi = { version = "0.3.8", features = ["winnt", "winuser"] }
|
|
|
|
crossterm_winapi = { path="../crossterm_winapi", version = "0.2.0"}
|
2019-01-28 07:16:14 +11:00
|
|
|
|
2019-01-28 07:45:32 +11:00
|
|
|
[target.'cfg(unix)'.dependencies]
|
2019-04-11 07:46:30 +10:00
|
|
|
libc = "0.2.51"
|
2019-01-28 07:45:32 +11:00
|
|
|
|
2019-01-28 07:16:14 +11:00
|
|
|
[dependencies]
|
2019-09-25 03:45:59 +10:00
|
|
|
crossterm_utils = { path="../crossterm_utils", version = "0.3.0"}
|
|
|
|
crossterm_screen = {path="../crossterm_screen", version = "0.3.0"}
|
2019-08-10 18:16:53 +10:00
|
|
|
serde = { version = "1.0", features = ["derive"], optional = true }
|