-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
51 lines (47 loc) · 1.51 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
[package]
name = "avif-converter"
description = "Simple tool to batch convert multiple images to AVIF"
authors = ["Ferrah Aiko <[email protected]>"]
license = "MIT"
version = "1.11.0"
edition = "2021"
readme = ""
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bytesize = "1.2.0"
clap = { version = "4", features = ["derive", "cargo"] }
color-eyre = { version = "0.6.2", default_features = false }
env_logger = { version = "0.11.3", default_features = false, features = [
"auto-color",
] }
hex = "0.4.3"
imgref = "1.9.4"
indicatif = { version = "0.17" }
log = "0.4"
md5 = { version = "0.7.0", default_features = false }
num_cpus = "1.16.0"
owo-colors = "4.0.0"
rand = "0.8.5"
rgb = "0.8.36"
sha2 = { version = "0.10.6", features = ["asm"] }
spinoff = "0.8.0"
once_cell = "1.17.1"
threadpool = "1.8.1"
image = { version = "0.25.1", default-features = false, features = ["png", "jpeg", "webp", "bmp", "avif-native", "nasm", "rayon", "avif"] }
rav1e = { version = "0.7.1", default_features = false, features = ["threading", "asm"] }
thiserror = "1.0"
loop9 = "0.1.3"
avif-serialize = "0.8.1"
notify-rust = { version = "4.8.0", features = ["images"] }
thread-priority = "1.1.0"
notify = "6.0.1"
blake2 = { version = "0.10.6" }
opencv = { version = "0.93.0", default-features = false, features = ["imgproc", "imgcodecs", "rgb"], optional = true}
[profile.release]
lto = false
opt-level = 3
panic = "abort"
[features]
default = ["ssim"]
ssim = ["opencv"]
opencv = ["dep:opencv"]