-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathCargo.toml
42 lines (37 loc) · 948 Bytes
/
Cargo.toml
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
35
36
37
38
39
40
41
42
[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.20.0"
readme = "README.md"
edition = "2021"
authors = ["David Peter <[email protected]>"]
rust-version = "1.70.0"
[features]
default = ["nu-ansi-term"]
gnu_legacy = ["nu-ansi-term/gnu_legacy"]
[dependencies]
ansi_term = { version = "0.12", optional = true }
nu-ansi-term = { version = "0.50", optional = true }
crossterm = { version = "0.28", optional = true }
owo-colors = { version = "4.0", optional = true }
aho-corasick = "1.1.3"
[dev-dependencies]
tempfile = "^3"
[[bin]]
name = "lscolors"
path = "src/bin.rs"
[profile.release]
lto = true
strip = true
codegen-units = 1