2019-01-28 07:16:14 +11:00
|
|
|
[package]
|
|
|
|
name = "crossterm_utils"
|
2019-09-25 03:45:59 +10:00
|
|
|
version = "0.3.0"
|
2019-04-11 07:53:43 +10:00
|
|
|
authors = ["T. Post"]
|
|
|
|
description = "Common logic used by the crossterm crates."
|
2019-09-25 03:45:59 +10:00
|
|
|
repository = "https://github.com/crossterm-rs/crossterm"
|
2019-04-11 07:53:43 +10:00
|
|
|
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"
|
2019-09-16 21:34:08 +10:00
|
|
|
edition = "2018"
|
2019-01-28 07:16:14 +11:00
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
2019-09-25 03:45:59 +10:00
|
|
|
winapi = { version = "0.3.8", features = ["wincon"] }
|
|
|
|
crossterm_winapi = { path="../crossterm_winapi", version = "0.2.0"}
|
2019-01-28 07:16:14 +11:00
|
|
|
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
2019-09-14 18:34:24 +10:00
|
|
|
libc = "0.2.51"
|