2019-01-28 07:16:14 +11:00
|
|
|
[package]
|
|
|
|
name = "crossterm_style"
|
2019-07-26 22:27:18 +10:00
|
|
|
version = "0.4.0"
|
2019-01-28 07:16:14 +11:00
|
|
|
authors = ["T. Post"]
|
|
|
|
description = "A cross-platform library styling the terminal output."
|
|
|
|
repository = "https://github.com/TimonPost/crossterm"
|
|
|
|
documentation = "https://docs.rs/crossterm_style/"
|
|
|
|
license = "MIT"
|
|
|
|
keywords = ["style", "color", "attributes", "crossterm", "terminal"]
|
|
|
|
exclude = ["target", "Cargo.lock"]
|
|
|
|
readme = "README.md"
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
2019-04-11 07:46:30 +10:00
|
|
|
winapi = { version = "0.3.7", features = ["wincon"] }
|
2019-08-03 03:05:16 +10:00
|
|
|
crossterm_winapi = { path="../crossterm_winapi", version = "0.1.5"}
|
2019-01-28 07:16:14 +11:00
|
|
|
|
|
|
|
[dependencies]
|
2019-08-03 03:05:16 +10:00
|
|
|
crossterm_utils = { path="../crossterm_utils", version = "0.2.4"}
|
2019-08-10 18:16:53 +10:00
|
|
|
serde = { version = "1.0.0", features = ["derive"], optional = true }
|