minicrossterm/crossterm_utils/Cargo.toml

18 lines
562 B
TOML
Raw Normal View History

[package]
name = "crossterm_utils"
2019-05-21 02:56:23 +10:00
version = "0.2.3"
2019-04-11 07:53:43 +10:00
authors = ["T. Post"]
description = "Common logic used by the crossterm crates."
repository = "https://github.com/TimonPost/crossterm"
documentation = "https://docs.rs/crossterm_utils/"
license = "MIT"
2019-04-12 01:02:00 +10:00
keywords = ["terminal", "abstractions", "crossterm", "windows", "screen_buffer"]
2019-04-11 07:53:43 +10:00
exclude = ["target", "Cargo.lock"]
readme = "README.md"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3.7", features = ["wincon"] }
2019-05-21 02:56:23 +10:00
crossterm_winapi = "0.1.4"
[target.'cfg(unix)'.dependencies]
libc = "0.2.51"