commit 7938a950c214cb92ee253a3f4f80ec6babd643c9
Author: Jack Mordaunt <jackmordaunt@gmail.com>
Date: Sun, 30 Dec 2018 19:36:28 +1300
[+] Let's begin, shall we?
Diffstat:
3 files changed, 20 insertions(+), 0 deletions(-)
diff --git a/.gitignore b/.gitignore
@@ -0,0 +1,6 @@
+/target
+**/*.rs.bk
+
+/target
+**/*.rs.bk
+Cargo.lock
diff --git a/Cargo.toml b/Cargo.toml
@@ -0,0 +1,7 @@
+[package]
+name = "icns"
+version = "0.1.0"
+authors = ["Jack Mordaunt <jackmordaunt@gmail.com>"]
+edition = "2018"
+
+[dependencies]
diff --git a/src/lib.rs b/src/lib.rs
@@ -0,0 +1,7 @@
+#[cfg(test)]
+mod tests {
+ #[test]
+ fn it_works() {
+ assert_eq!(2 + 2, 4);
+ }
+}