minicrossterm/crossterm_screen/Cargo.toml

19 lines
664 B
TOML
Raw Normal View History

[package]
name = "crossterm_screen"
2019-07-26 04:31:45 +10:00
version = "0.2.4"
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-08-03 03:05:16 +10:00
crossterm_utils = { path="../crossterm_utils", version = "0.2.4"}
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3.7", features = ["minwindef", "wincon"] }
2019-08-03 03:05:16 +10:00
crossterm_winapi = { path="../crossterm_winapi", version = "0.1.5"}