2019-01-28 07:16:14 +11:00
|
|
|
[package]
|
|
|
|
name = "crossterm_winapi"
|
2019-09-25 03:45:59 +10:00
|
|
|
version = "0.2.0"
|
2019-01-28 07:16:14 +11:00
|
|
|
authors = ["T. Post"]
|
|
|
|
description = "An WinApi wrapper that provides some basic simple abstractions aground common WinApi calls"
|
2019-09-25 03:45:59 +10:00
|
|
|
repository = "https://github.com/crossterm-rs/crossterm"
|
2019-01-28 07:16:14 +11:00
|
|
|
documentation = "https://docs.rs/crossterm_winapi/"
|
|
|
|
license = "MIT"
|
|
|
|
keywords = ["winapi", "abstractions", "crossterm", "windows", "screen_buffer"]
|
|
|
|
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
|
|
|
|
2019-09-24 04:40:14 +10:00
|
|
|
[target.'cfg(windows)'.dependencies]
|
2019-09-25 03:45:59 +10:00
|
|
|
winapi = { version = "0.3.8", features = ["winbase","consoleapi","processenv", "handleapi"] }
|
2019-09-24 04:40:14 +10:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
default-target = "x86_64-pc-windows-msvc"
|