commit a7d79b3f01af6567700837a6b5abc05d21526f48 Author: KAMADA Ken'ichi Date: Sun Sep 4 23:31:06 2016 +0900 Add a library template for an Exif library. diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..c375931 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,4 @@ +[package] +name = "exif" +version = "0.1.0" +authors = ["KAMADA Ken'ichi "] diff --git a/src/lib.rs b/src/lib.rs new file mode 100644 index 0000000..cdfbe1a --- /dev/null +++ b/src/lib.rs @@ -0,0 +1,6 @@ +#[cfg(test)] +mod tests { + #[test] + fn it_works() { + } +}