minicrossterm/crossterm_input/Cargo.toml

31 lines
767 B
TOML
Raw Normal View History

[package]
name = "crossterm_input"
version = "0.2.1"
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"
keywords = ["input", "keys", "crossterm", "events", "terminal"]
exclude = ["target", "Cargo.lock"]
readme = "README.md"
edition = "2018"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3.5", features = ["winnt", "winuser"] }
crossterm_winapi = "0.1.2"
2019-01-28 07:45:32 +11:00
[target.'cfg(unix)'.dependencies]
libc = "0.2.43"
[dependencies]
2019-02-23 01:20:24 +11:00
crossterm_utils = "0.1.0"
crossterm_screen = "0.1.0"
[[example]]
name = "input"
path = "examples/input.rs"
[[example]]
name = "key_events"
path = "examples/key_events.rs"