-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
35 lines (32 loc) · 1.07 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
[package]
name = "gradient"
version = "0.4.0"
authors = ["Nor Khasyatillah <mazznoer@ymail.com>"]
edition = "2018"
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]
clap = { version = "4.5.9", features = ["derive", "wrap_help"] }
#colorgrad = { version = "0.7.0", features = ["lab", "ggr"] }
colorgrad = { git = "https://github.com/mazznoer/colorgrad-rs", features = ["lab", "ggr"] }
csscolorparser = { version = "0.7.0" }
svg = "0.18.0"
terminal_size = "0.4.0"
[build-dependencies]
clap = { version = "4.5.9", features = ["derive", "wrap_help"] }
clap_complete = "4.5.8"
#colorgrad = { version = "0.7.0", features = ["lab", "ggr"] }
colorgrad = { git = "https://github.com/mazznoer/colorgrad-rs", features = ["lab", "ggr"] }