From fa66f676e57edb610c49eaebfcb3eb827b1f1003 Mon Sep 17 00:00:00 2001 From: Drew Short Date: Mon, 4 Jan 2016 13:04:04 -0600 Subject: [PATCH] Fixing the wildcard issues that cargo was complaining about publishing to crates.io --- Cargo.toml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 52f57f9..509c205 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,19 +1,18 @@ [package] name = "pihash" -version = "0.2.1" +version = "0.2.2" 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/" readme = "README.md" keywords = ["phash", "perceptual", "image", "comparison"] -license = "MIT" license-file = "LICENSE" exclude = ["test_images/*"] [dependencies] -docopt = "*" -rustc-serialize = "*" -image = "*" -complex = "*" -dft = "*" -sha1 = "*" +docopt = "0.6.78" +rustc-serialize = "0.3.16" +image = "0.6.0" +complex = "0.8.0" +dft = "0.4.1" +sha1 = "0.1.1"