From 7dd51e36c2badfb9ec12d73837bbe3f6f28e5655 Mon Sep 17 00:00:00 2001 From: Drew Short Date: Mon, 7 Sep 2015 11:58:26 -0500 Subject: [PATCH] Created the project --- Cargo.toml | 4 ++++ src/main.rs | 3 +++ 2 files changed, 7 insertions(+) create mode 100644 Cargo.toml create mode 100644 src/main.rs diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..8a64e1f --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,4 @@ +[package] +name = "Perceptual-Image-Hashing" +version = "0.1.0" +authors = ["Drew Short "] diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}