summary refs log tree commit diff homepage
diff options
context:
space:
mode:
-rw-r--r--.gitignore2
-rw-r--r--Cargo.lock4
-rw-r--r--Cargo.toml6
-rw-r--r--src/bin/day01.rs2
4 files changed, 13 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
index d553987..eb5a316 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1 @@
-day??
+target
diff --git a/Cargo.lock b/Cargo.lock
new file mode 100644
index 0000000..2a3d212
--- /dev/null
+++ b/Cargo.lock
@@ -0,0 +1,4 @@
+[root]
+name = "aoc"
+version = "0.1.0"
+
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 0000000..5db5a11
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,6 @@
+[package]
+name = "aoc"
+version = "0.1.0"
+authors = ["June McEnroe <programble@gmail.com>"]
+
+[dependencies]
diff --git a/src/bin/day01.rs b/src/bin/day01.rs
new file mode 100644
index 0000000..f79c691
--- /dev/null
+++ b/src/bin/day01.rs
@@ -0,0 +1,2 @@
+fn main() {
+}