From 3073006ef4f55c48045e12c0eb1a7d7959459893 Mon Sep 17 00:00:00 2001 From: Drew Short Date: Sun, 6 Mar 2016 22:51:57 -0600 Subject: [PATCH] Updated dependency versions --- Cargo.toml | 10 +++++----- src/cache.rs | 2 +- src/lib.rs | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 0baef57..c19daac 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pihash" -version = "0.2.8" +version = "0.2.9" authors = ["Drew Short "] 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/" @@ -14,10 +14,10 @@ crate-type = ["dylib", "rlib"] [dependencies] docopt = "0.6.78" -rustc-serialize = "0.3.16" -image = "0.6.0" +rustc-serialize = "0.3.18" +image = "0.7.0" complex = "0.8.0" dft = "0.4.1" sha1 = "0.1.1" -libc = "0.2.4" -flate2 = "0.2.11" +libc = "0.2.7" +flate2 = "0.2.13" diff --git a/src/cache.rs b/src/cache.rs index 2356713..4204532 100644 --- a/src/cache.rs +++ b/src/cache.rs @@ -1,4 +1,4 @@ -// Copyright 2015 Drew Short . +// Copyright 2016 Drew Short . // // Licensed under the MIT license. // This file may not be copied, modified, or distributed except according to those terms. diff --git a/src/lib.rs b/src/lib.rs index 29df06d..4dbabeb 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -// Copyright 2015 Drew Short . +// Copyright 2016 Drew Short . // // Licensed under the MIT license. // This file may not be copied, modified, or distributed except according to those terms. @@ -72,7 +72,7 @@ pub fn get_hamming_distance(hash1: u64, hash2: u64) -> u64 { hash::calculate_hamming_distance(hash1, hash2) } -// External proxies for the get_*hash methods +// External proxies for the get_*hash methods // #[no_mangle] pub extern "C" fn ext_get_ahash(path_char: *const libc::c_char) -> libc::uint64_t {