minicrossterm/crossterm_screen/Cargo.toml

20 lines
669 B
TOML
Raw Normal View History

[package]
name = "crossterm_screen"
2019-09-25 03:45:59 +10:00
version = "0.3.0"
authors = ["T. Post"]
description = "A cross-platform library for raw and alternate screen."
2019-09-25 03:45:59 +10:00
repository = "https://github.com/crossterm-rs/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-09-25 03:45:59 +10:00
crossterm_utils = { path="../crossterm_utils", version = "0.3.0"}
[target.'cfg(windows)'.dependencies]
2019-09-25 03:45:59 +10:00
winapi = { version = "0.3.8", features = ["minwindef", "wincon"] }
crossterm_winapi = { path="../crossterm_winapi", version = "0.2.0" }