forked from colored-rs/colored
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (28 loc) · 722 Bytes
/
Cargo.toml
File metadata and controls
32 lines (28 loc) · 722 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "colored"
description = "The most simple way to add colors in your terminal"
version = "2.1.0"
authors = ["Thomas Wickham <mackwic@gmail.com>"]
license = "MPL-2.0"
homepage = "https://github.com/mackwic/colored"
repository = "https://github.com/mackwic/colored"
readme = "README.md"
keywords = ["color", "string", "term", "ansi_term", "term-painter"]
[features]
# with this feature, no color will ever be written
no-color = []
[dependencies]
atty = "0.2"
lazy_static = "1"
paste = "1.0.6"
[target.'cfg(windows)'.dependencies.winapi]
version = "0.3"
default-features = false
features = [
"consoleapi",
"processenv",
"winbase"
]
[dev_dependencies]
ansi_term = "0.12"
rspec = "=1.0.0-beta.3"