2018-01-04 00:43:54 +11:00
|
|
|
[package]
|
|
|
|
name = "crossterm"
|
|
|
|
version = "0.1.0"
|
2018-01-19 09:24:10 +11:00
|
|
|
authors = ["T Post <timonpost@hotmail.nl>"]
|
2018-01-19 09:10:44 +11:00
|
|
|
description = "An crossplarform terminal library for manipulating terminals."
|
|
|
|
repository = "https://github.com/TimonPost/crossterm"
|
|
|
|
documentation = "https://atcentra.com/crossterm/"
|
|
|
|
license = "MIT"
|
2018-01-19 09:17:27 +11:00
|
|
|
keywords = ["console", "color", "cursor", "terminal", "cli"]
|
2018-01-19 09:10:44 +11:00
|
|
|
exclude = ["target", "Cargo.lock"]
|
2018-01-04 00:43:54 +11:00
|
|
|
|
|
|
|
[dependencies]
|
2018-01-18 09:06:45 +11:00
|
|
|
[target.'cfg(windows)'.dependencies]
|
2018-01-19 08:47:09 +11:00
|
|
|
winapi = { version = "0.3", features = ["winbase","winuser","consoleapi","processenv","wincon", "handleapi"] }
|
2018-01-04 00:43:54 +11:00
|
|
|
|
2018-01-18 09:06:45 +11:00
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
|
|
libc = "0.2"
|
2018-01-04 00:43:54 +11:00
|
|
|
|
2018-01-26 04:26:08 +11:00
|
|
|
[[bin]]
|
2018-01-28 04:26:08 +11:00
|
|
|
name = "example_bin"
|
2018-01-26 04:26:08 +11:00
|
|
|
path = "./examples/bin.rs"
|
2018-01-04 00:43:54 +11:00
|
|
|
|
2018-01-19 08:47:09 +11:00
|
|
|
|