2018-01-04 00:43:54 +11:00
|
|
|
[package]
|
|
|
|
name = "crossterm"
|
2018-01-28 06:05:06 +11:00
|
|
|
version = "0.2.0"
|
2018-01-19 09:24:10 +11:00
|
|
|
authors = ["T Post <timonpost@hotmail.nl>"]
|
2018-05-20 22:44:14 +10:00
|
|
|
description = "An crossplatform terminal library for manipulating terminals."
|
2018-01-19 09:10:44 +11:00
|
|
|
repository = "https://github.com/TimonPost/crossterm"
|
2018-05-20 22:44:14 +10:00
|
|
|
documentation = "https://docs.rs/crossterm/0.2.0/crossterm/"
|
2018-01-19 09:10:44 +11:00
|
|
|
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-05-20 22:44:14 +10:00
|
|
|
readme = "README.md"
|
2018-01-04 00:43:54 +11:00
|
|
|
|
|
|
|
[dependencies]
|
2018-03-04 01:40:51 +11:00
|
|
|
rand = "0.4.2"
|
2018-07-09 06:13:32 +10:00
|
|
|
lazy_static = "1.0.1"
|
2018-03-04 01:40:51 +11:00
|
|
|
|
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-03-04 01:40:51 +11:00
|
|
|
termios = "0.3.0"
|
|
|
|
|
2018-03-06 08:06:43 +11:00
|
|
|
[lib]
|
|
|
|
name = "crossterm"
|
2018-06-10 05:59:43 +10:00
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "a"
|
2018-06-10 07:19:02 +10:00
|
|
|
path = "examples/Crossterm 0.2.2 - New Version (Not finished)/bin.rs"
|