1[package]
2authors = ["Kornel <pornel@pornel.net>"]
3categories = ["multimedia::images"]
4description = "Library that measures structural similarity between images using a multi-scale variant of the SSIM algorithm."
5documentation = "https://docs.rs/dssim-core"
6homepage = "https://kornel.ski/dssim"
7include = ["README.md", "Cargo.toml", "src/*.rs", "LICENSE"]
8keywords = ["ssim", "image", "comparison", "objective", "metric"]
9license = "AGPL-3.0"
10name = "dssim-core"
11readme = "README.md"
12repository = "https://github.com/kornelski/dssim.git"
13version = "3.1.0"
14edition = "2018"
15
16[lib]
17crate-type = ["lib", "staticlib"]
18
19[dependencies]
20imgref = "1.7.1"
21itertools = "0.10.0"
22rayon = "1.5.0"
23rgb = "0.8.25"
24
25[dev-dependencies]
26lodepng = "3.4.3"
27
28[package.metadata.docs.rs]
29targets = ["x86_64-unknown-linux-gnu"]
30