-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
59 lines (49 loc) · 1.2 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[package]
name = "rscolorq"
version = "0.2.0"
authors = ["okaneco <[email protected]>"]
edition = "2018"
exclude = ["test", "gfx", ".github"]
description = "Spatial color quantization, a Rust port of `scolorq`."
homepage = "https://github.com/okaneco/rscolorq"
repository = "https://github.com/okaneco/rscolorq"
readme = "README.md"
keywords = ["dither", "quantization", "palette", "spatial", "halftone"]
categories = ["graphics", "multimedia::images"]
license = "MIT OR Apache-2.0"
[features]
default = ["app"]
app = [
"image",
"palette_color",
"structopt",
]
# Enables Lab color quantization
palette_color = ["palette"]
[dependencies.image]
version = "0.23"
default-features = false
features = ["jpeg", "png"]
optional = true
[dependencies.palette]
version = "0.5"
default-features = false
features = ["std"]
optional = true
[dependencies.rand]
version = "0.8"
default-features = false
features = ["std"]
[dependencies.rand_pcg]
version = "0.3"
default-features = false
[dependencies.structopt]
version = "0.3"
default-features = false
optional = true
[profile.release]
lto = "thin"
[package.metadata.docs.rs]
no-default-features = true
features = ["palette_color"]
targets = []