minicrossterm/Cargo.toml
2018-01-18 23:17:27 +01:00

21 lines
595 B
TOML

[package]
name = "crossterm"
version = "0.1.0"
authors = ["T <timonpost@hotmail.nl>"]
description = "An crossplarform terminal library for manipulating terminals."
repository = "https://github.com/TimonPost/crossterm"
documentation = "https://atcentra.com/crossterm/"
license = "MIT"
keywords = ["console", "color", "cursor", "terminal", "cli"]
exclude = ["target", "Cargo.lock"]
[dependencies]
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["winbase","winuser","consoleapi","processenv","wincon", "handleapi"] }
[target.'cfg(unix)'.dependencies]
libc = "0.2"