2019-01-28 07:16:14 +11:00
|
|
|
[package]
|
|
|
|
name = "crossterm_screen"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["T. Post"]
|
|
|
|
description = "A cross-platform library for raw and alternate screen."
|
|
|
|
repository = "https://github.com/TimonPost/crossterm"
|
|
|
|
documentation = "https://docs.rs/crossterm_screen/"
|
|
|
|
license = "MIT"
|
|
|
|
keywords = ["screen", "alternate", "raw", "crossterm", "terminal"]
|
|
|
|
exclude = ["target", "Cargo.lock"]
|
|
|
|
readme = "README.md"
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
2019-02-23 01:20:24 +11:00
|
|
|
crossterm_utils = "0.1.0"
|
2019-01-28 07:16:14 +11:00
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
|
|
winapi = { version = "0.3.5", features = ["minwindef", "wincon"] }
|
2019-04-03 07:23:38 +11:00
|
|
|
crossterm_winapi = "0.1.1"
|