imgddcore 0.1.1

Performance-first perceptual hashing library; perfect for handling large datasets. Designed to quickly process nested folder structures, commonly found in image datasets
Documentation
[[bench]]
harness = false
name = "core_benches"
path = "benches/core_benches.rs"
required-features = ["benchmark"]

[dependencies.anyhow]
version = "1.0.95"

[dependencies.criterion]
optional = true
package = "codspeed-criterion-compat"
version = "2.7.1"

[dependencies.image]
version = "0.25.5"

[dependencies.log]
version = "0.4.25"

[dependencies.rayon]
version = "1.10.0"

[dependencies.rustdct]
version = "0.7.1"

[dependencies.walkdir]
version = "2.3"

[dev-dependencies.tempfile]
version = "3.5"

[features]
benchmark = ["criterion"]
default = []
testing = []

[lib]
name = "imgddcore"
path = "src/lib.rs"

[package]
authors = ["Aaron Stopher <aaron.stopher@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["algorithms", "computer-vision", "data-structures", "mathematics"]
description = """
Performance-first perceptual hashing library; perfect for handling large datasets. 
Designed to quickly process nested folder structures, commonly found in image datasets
"""
documentation = "https://github.com/aastopher/imgdd"
edition = "2021"
homepage = "https://github.com/aastopher/imgdd"
keywords = ["imagehash", "hash", "perceptual", "deduplication", "wavelet"]
license = "GPL-3.0-or-later"
name = "imgddcore"
readme = "README.md"
repository = "https://github.com/aastopher/imgdd"
version = "0.1.1"

[[test]]
name = "dedupe_tests"
path = "tests/dedupe_tests.rs"

[[test]]
name = "hashing_tests"
path = "tests/hashing_tests.rs"

[[test]]
name = "normalize_tests"
path = "tests/normalize_tests.rs"

[[test]]
name = "validate_tests"
path = "tests/validate_tests.rs"