๐Ÿ“ฆ sharkdp / lscolors

๐Ÿ“„ Cargo.toml ยท 43 lines
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
43[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.19.0"
readme = "README.md"
edition = "2021"
authors = ["David Peter <mail@david-peter.de>"]
rust-version = "1.63.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