You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
767 B
31 lines
767 B
[package]
|
|
name = "pihash"
|
|
version = "0.3.4"
|
|
authors = ["Drew Short <warrick@sothr.com>"]
|
|
description = "A simple library for generating perceptual hashes for images and comparing images based on their perceptual hashes."
|
|
repository = "https://github.com/warricksothr/Perceptual-Image-Hashing/"
|
|
readme = "README.md"
|
|
keywords = ["phash", "perceptual", "image", "comparison"]
|
|
license = "MIT"
|
|
exclude = ["test_images/*"]
|
|
|
|
[lib]
|
|
crate-type = ["dylib", "rlib"]
|
|
|
|
[features]
|
|
default = []
|
|
|
|
# Feature to allow bench testing on nightly
|
|
# But still allow the code to build on beta/stable
|
|
bench = []
|
|
|
|
[dependencies]
|
|
libc = "0.2.10"
|
|
rustc-serialize = "0.3.19"
|
|
dft = "0.4.3"
|
|
image = "0.9.0"
|
|
num = "0.1.32"
|
|
docopt = "0.6.80"
|
|
flate2 = "0.2.13"
|
|
sha1 = "0.1.1"
|
|
criterion-stats = "0.1.0"
|