A .gitignore => .gitignore +2 -0
@@ 0,0 1,2 @@
+/target
+**/*.rs.bk
A Cargo.lock => Cargo.lock +5 -0
@@ 0,0 1,5 @@
+# This file is automatically @generated by Cargo.
+# It is not intended for manual editing.
+[[package]]
+name = "clinte"
+version = "0.1.0"
A Cargo.toml => Cargo.toml +9 -0
@@ 0,0 1,9 @@
+[package]
+name = "clinte"
+version = "0.1.0"
+authors = ["Ben Morrison <ben@gbmor.dev>"]
+edition = "2018"
+
+# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
+
+[dependencies]
A src/main.rs => src/main.rs +4 -0
@@ 0,0 1,4 @@
+fn main() {
+ println!("clinte-0.1-dev");
+ println!("a community notices system");
+}