From 8255ae4334de5b6565b5c712591a99419dd0c812 Mon Sep 17 00:00:00 2001 From: Drew Short Date: Sun, 13 Sep 2015 07:59:55 -0500 Subject: [PATCH] Pulled in the image library to allow reading image files --- .gitignore | 3 +++ Cargo.lock | 4 ---- Cargo.toml | 5 +++++ 3 files changed, 8 insertions(+), 4 deletions(-) delete mode 100644 Cargo.lock diff --git a/.gitignore b/.gitignore index 37727f9..9973bf5 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,6 @@ # Generated by Cargo /target/ + +# Building a library, so ignore the lock file +Cargo.lock diff --git a/Cargo.lock b/Cargo.lock deleted file mode 100644 index 96fd819..0000000 --- a/Cargo.lock +++ /dev/null @@ -1,4 +0,0 @@ -[root] -name = "perceptual_image_hashing" -version = "0.1.0" - diff --git a/Cargo.toml b/Cargo.toml index af787d2..23d98b2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,3 +2,8 @@ name = "perceptual_image_hashing" version = "0.1.0" authors = ["Drew Short "] + +[dependencies] +docopt = "*" +rustc-serialize = "*" +image = "*"