From cb855ae33546aa1ce99a8411645a226856d9c4e0 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Sun, 15 May 2016 14:09:29 +0200 Subject: [PATCH] Initial import --- libimagerror/Cargo.toml | 6 ++++++ libimagerror/src/lib.rs | 6 ++++++ 2 files changed, 12 insertions(+) create mode 100644 libimagerror/Cargo.toml create mode 100644 libimagerror/src/lib.rs diff --git a/libimagerror/Cargo.toml b/libimagerror/Cargo.toml new file mode 100644 index 00000000..bd769698 --- /dev/null +++ b/libimagerror/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "libimagerror" +version = "0.1.0" +authors = ["Matthias Beyer "] + +[dependencies] diff --git a/libimagerror/src/lib.rs b/libimagerror/src/lib.rs new file mode 100644 index 00000000..cdfbe1aa --- /dev/null +++ b/libimagerror/src/lib.rs @@ -0,0 +1,6 @@ +#[cfg(test)] +mod tests { + #[test] + fn it_works() { + } +}