-
Notifications
You must be signed in to change notification settings - Fork 94
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (30 loc) · 791 Bytes
/
Cargo.toml
File metadata and controls
34 lines (30 loc) · 791 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
33
34
[package]
name = "colored"
description = "The most simple way to add colors in your terminal"
version = "2.0.0"
edition = "2021"
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]
default = ["tty"]
tty = ["dep:atty"]
# with this feature, no color will ever be written
no-color = []
[dependencies]
atty = { version = "0.2", optional = true }
lazy_static = "1"
[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"