2019-01-28 07:16:14 +11:00
|
|
|
[package]
|
|
|
|
name = "crossterm_input"
|
2019-06-16 05:51:53 +10:00
|
|
|
version = "0.3.6"
|
2019-01-28 07:16:14 +11:00
|
|
|
authors = ["T. Post"]
|
|
|
|
description = "A cross-platform library for reading userinput."
|
|
|
|
repository = "https://github.com/TimonPost/crossterm"
|
|
|
|
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-04-11 07:46:30 +10:00
|
|
|
winapi = { version = "0.3.7", features = ["winnt", "winuser"] }
|
2019-05-21 02:56:23 +10:00
|
|
|
crossterm_winapi = "0.1.4"
|
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-05-21 02:56:23 +10:00
|
|
|
crossterm_utils = "0.2.3"
|
|
|
|
crossterm_screen = "0.2.3"
|