-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
63 lines (49 loc) · 1012 Bytes
/
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
60
61
62
63
[package]
name = "image_comp"
version = "0.1.0"
authors = ["Hannes Furmans <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "image_comp"
path = "src/lib.rs"
[[bin]]
name = "image-compressor"
path = "src/main.rs"
[profile.dev]
overflow-checks = false
[profile.release]
overflow-checks = false
lto = true
[profile.test]
opt-level = 3
overflow-checks = false
[profile.bench]
overflow-checks = false
lto = true
[dependencies]
ndarray = "0.14.0"
image = "0.23.12"
nshare = {version = "0.2.0", features=["image", "ndarray"]}
rdrand = "0.8.0"
bytes = "1.0.1"
libflate = "1.0.3"
average = "0.13.1"
zstd = {version = "0.9.2+zstd.1.4.8", features=["thin"]}
kmeans = "0.2.0"
[dev-dependencies]
criterion = "0.3"
[[bench]]
name = "img_1"
harness = false
[[bench]]
name = "img_2"
harness = false
[[bench]]
name = "img_3"
harness = false
[[bench]]
name = "img_4"
harness = false
[features]
debug-out-img = []