-
Notifications
You must be signed in to change notification settings - Fork 71
/
Cargo.toml
67 lines (58 loc) · 1.77 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
60
61
62
63
64
65
66
67
[package]
authors = ["Kornel <[email protected]>"]
categories = ["multimedia::images", "command-line-utilities"]
description = "Tool that measures structural similarity between images using a multi-scale variant of the SSIM algorithm."
documentation = "https://docs.rs/dssim"
homepage = "https://kornel.ski/dssim"
include = ["README.md", "Cargo.toml", "src/*.rs", "LICENSE"]
keywords = ["ssim", "image", "comparison", "visual", "benchmark"]
license = "AGPL-3.0"
name = "dssim"
readme = "README.md"
repository = "https://github.com/kornelski/dssim.git"
version = "3.3.3"
edition = "2021"
rust-version = "1.71"
[[bin]]
doctest = false
name = "dssim"
path = "src/main.rs"
[dependencies]
dssim-core = { path = "./dssim-core", version = "3.2.10", default-features = false }
imgref = "1.11.0"
getopts = "0.2.21"
rayon = { version = "1.10.0", optional = true }
rgb = "0.8.44"
lodepng = { version = "3.10.2", default-features = false, features = ["rust_backend"] }
load_image = { version = "3.1.4", features = ["lcms2-static"] }
crossbeam-channel = "0.5.13"
ordered-channel = { version = "1.1.0" }
[features]
default = ["threads", "dssim-core/default", "no-macos-vimage"]
threads = ["dep:rayon", "dssim-core/threads"]
avif = ["load_image/avif"]
webp = ["load_image/webp"]
webp-static = ["load_image/webp-static"]
no-macos-vimage = ["dssim-core/no-macos-vimage"]
[package.metadata.release]
consolidate-commits = true
consolidate-pushes = true
tag-message = ""
tag-name = "{{version}}"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
rustdoc-args = ["--generate-link-to-definition"]
[workspace]
members = [
"dssim-core"
]
[profile.dev]
opt-level = 1
debug = 1
[profile.release]
opt-level = 3
lto = "fat"
debug = false
panic = "abort"
[badges]
maintenance = { status = "actively-developed" }