-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
32 lines (28 loc) · 1.05 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
[package]
name = "image-compare"
version = "0.4.1"
edition = "2021"
authors = ["Christopher Regali <[email protected]>"]
license = "MIT"
repository = "https://github.com/ChrisRega/image-compare"
homepage = "https://github.com/ChrisRega/image-compare"
documentation = "https://docs.rs/image-compare"
readme = "README.md"
categories = ["multimedia::images"]
exclude = ["tests/data/*", ".github"]
description = "Image comparison library based upon the image crate. Currently it provides SSIM and RMS for comparing grayscale and rgb images, a cool hybrid compare as well as several grayscale histogram distance metrics. All with a friendly license."
[dependencies]
thiserror = "1.0"
image = { version = "0.25", default-features = false }
rayon = "1.9"
itertools = "0.12"
[dev-dependencies]
cucumber = "0.20"
tokio = { version = "1", features = ["macros", "rt-multi-thread", "time"] }
image = { version = "0.25", default-features = false, features = ["png"] }
[[test]]
name = "compare"
harness = false
[profile.release-with-debug]
inherits = "release"
debug = true