From f8682a65fae6318483bda5268def503435329dc8 Mon Sep 17 00:00:00 2001 From: Richard Newman Date: Fri, 16 Dec 2016 10:39:08 -0800 Subject: [PATCH] Initial Rust commit. If you want to go fast, go alone. If you want to go far, go together. --- Cargo.toml | 6 ++++++ src/lib.rs | 6 ++++++ 2 files changed, 12 insertions(+) create mode 100644 Cargo.toml create mode 100644 src/lib.rs diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 00000000..80fab194 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "datomish" +version = "0.4.0" +authors = ["Richard Newman ", "Nicholas Alexander "] + +[dependencies] diff --git a/src/lib.rs b/src/lib.rs new file mode 100644 index 00000000..cdfbe1aa --- /dev/null +++ b/src/lib.rs @@ -0,0 +1,6 @@ +#[cfg(test)] +mod tests { + #[test] + fn it_works() { + } +}