minicrossterm/Cargo.toml
Timon 515b0bd510
Update Cargo.toml
changed version number fixed bug
2018-06-13 18:50:39 +02:00

26 lines
709 B
TOML

[package]
name = "crossterm"
version = "0.2.2"
authors = ["T Post <timonpost@hotmail.nl>"]
description = "An crossplatform terminal library for manipulating terminals."
repository = "https://github.com/TimonPost/crossterm"
documentation = "https://docs.rs/crossterm/0.2.0/crossterm/"
license = "MIT"
keywords = ["console", "color", "cursor", "terminal", "cli"]
exclude = ["target", "Cargo.lock"]
readme = "README.md"
[dependencies]
rand = "0.4.2"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["winbase","winuser","consoleapi","processenv","wincon", "handleapi"] }
[target.'cfg(unix)'.dependencies]
libc = "0.2"
termios = "0.3.0"
[lib]
name = "crossterm"
path = "src/lib.rs"