forked from kornelski/dssim
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
65 lines (56 loc) · 1.61 KB
/
Cargo.toml
File metadata and controls
65 lines (56 loc) · 1.61 KB
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
[package]
authors = ["Kornel <pornel@pornel.net>"]
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.0"
edition = "2021"
rust-version = "1.63"
[[bin]]
doctest = false
name = "dssim"
path = "src/main.rs"
[dependencies]
dssim-core = { path = "./dssim-core", version = "3.2.5", default-features = false }
imgref = "1.9.4"
getopts = "0.2.21"
rayon = { version = "1.7.0", optional = true }
rgb = "0.8.36"
lodepng = "3.7.2"
load_image = { version = "3.1.1", features = ["lcms2-static"] }
crossbeam-channel = "0.5.8"
[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"]
[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" }