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
|
[package]
name = "image_hasher"
version = "2.0.0"
rust-version = "1.67.1"
edition = "2021"
license = "MIT OR Apache-2.0"
authors = ["RafaĆ Mikrut <mikrutrafal@protonmail.com>", "Austin Bonander <austin.bonander@gmail.com>"]
description = "A simple library that provides perceptual hashing and difference calculation for images."
documentation = "http://docs.rs/image_hasher"
keywords = ["image", "hash", "perceptual", "difference"]
repository = "http://github.com/qarmin/img_hash"
readme = "README.md"
[features]
nightly = []
[dependencies]
base64 = "0.22.0"
image = { version = ">=0.25,<0.26", default-features = false }
rustdct = "0.7"
serde = { version = "1.0", features = ["derive"] }
transpose = "0.2"
[dev-dependencies]
criterion = "0.5"
rand = { version = "0.8", features = ["small_rng"] }
[[bench]]
name = "byte_to_float"
harness = false
[[bench]]
name = "hash"
harness = false
[[bin]]
name = "hash_image"
|