-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (28 loc) · 804 Bytes
/
Cargo.toml
File metadata and controls
31 lines (28 loc) · 804 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
[package]
name = "gradient"
version = "0.5.0"
authors = ["Nor Khasyatillah <mazznoer@ymail.com>"]
edition = "2024"
description = "A command line tool for playing with color gradients"
keywords = ["color", "gradient", "colormap", "color-scheme", "gimp"]
categories = ["command-line-utilities", "graphics"]
readme = "README.md"
repository = "https://github.com/mazznoer/gradient-rs"
license = "MIT OR Apache-2.0"
exclude = [
".github/*",
"docs/*",
"test_data/*",
"tests/*",
]
[profile.release]
lto = true
strip = true
[dependencies]
colorgrad = { version = "0.8", features = ["preset", "named-colors", "lab", "ggr"] }
csscolorparser = { version = "0.8" }
lexopt = { version = "0.3" }
svg = { version = "0.18" }
terminal_size = { version = "0.4" }
[dev-dependencies]
assert_cmd = { version = "2.0" }