minicrossterm/crossterm_input/Cargo.toml

25 lines
839 B
TOML
Raw Normal View History

[package]
name = "crossterm_input"
2019-09-25 03:45:59 +10:00
version = "0.4.0"
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"
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]
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:45:32 +11:00
[target.'cfg(unix)'.dependencies]
libc = "0.2.51"
2019-01-28 07:45:32 +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"}
serde = { version = "1.0", features = ["derive"], optional = true }