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