-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
43 lines (36 loc) · 1.06 KB
/
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
43
[package]
name = "ansi_colours"
description = "true-colour ↔ ANSI terminal palette converter"
version = "1.2.3"
readme = "README.md"
authors = ["Michał Nazarewicz <[email protected]>"]
keywords = ["ansi", "terminal", "color", "rgb"]
categories = ["command-line-interface"]
license = "LGPL-3.0-or-later"
repository = "https://github.com/mina86/ansi_colours"
documentation = "https://docs.rs/ansi_colours"
exclude = ["tools/**"]
edition = "2018"
[package.metadata.docs.rs]
all-features = true
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
ansi_term = { version = "0.12", optional = true }
anstyle = { version = "1", optional = true }
rgb = { version = "0.8", optional = true }
termcolor = { version = ">= 1.0, <= 1.2", optional = true }
[features]
default = ["rgb"]
[dev-dependencies]
crc64 = "2"
criterion = { version = "0.5", default-features = false }
empfindung = "0.2.6"
lab = ">=0.4, <1.0"
rgb = "0.8"
[profile.release]
lto = true
panic = 'abort'
[[bench]]
name = "ansi256"
harness = false