-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (31 loc) · 901 Bytes
/
Cargo.toml
File metadata and controls
35 lines (31 loc) · 901 Bytes
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
[package]
authors = ["Kornel <pornel@pornel.net>"]
categories = ["multimedia::images", "command-line-utilities"]
description = "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"]
license = "AGPL-3.0"
name = "dssim"
readme = "README.md"
repository = "https://github.com/kornelski/dssim.git"
version = "2.11.2"
edition = "2018"
[[bin]]
doctest = false
name = "dssim"
path = "src/main.rs"
[dependencies]
getopts = "0.2.21"
imgref = "1.6.1"
itertools = "0.9.0"
lodepng = "3.0.0"
rayon = "1.3.1"
rgb = "0.8.20"
load_image = { version = "2.12.1", features = ["static"] }
[lib]
doctest = false
name = "dssim"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]