-
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (28 loc) · 675 Bytes
/
Cargo.toml
File metadata and controls
32 lines (28 loc) · 675 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 = "lscolors"
description = "Colorize paths using the LS_COLORS environment variable"
categories = ["command-line-interface"]
homepage = "https://github.com/sharkdp/lscolors"
repository = "https://github.com/sharkdp/lscolors"
keywords = [
"cli",
"linux",
"terminal",
"filesystem",
"color"
]
license = "MIT/Apache-2.0"
version = "0.5.0"
readme = "README.md"
edition = "2018"
authors = ["David Peter <mail@david-peter.de>"]
[dependencies]
ansi_term = { version = "0.11", optional = true }
[dev-dependencies]
tempdir = "0.3"
[features]
default = ["ansi_term"]
[[bin]]
name = "lscolors"
path = "src/bin.rs"
required-features = ["ansi_term"]