summary refs log tree commit diff homepage
diff options
context:
space:
mode:
authorJune McEnroe <programble@gmail.com>2016-12-03 22:02:40 -0500
committerJune McEnroe <programble@gmail.com>2016-12-03 22:02:40 -0500
commit1a8d40cc73db9393a5cc623e4fbb38cc68b5a0ad (patch)
tree7c14fea278b69d80d6b7a04f133bceaafded6c2a
parentRemove assembly code (diff)
downloadaoc-1a8d40cc73db9393a5cc623e4fbb38cc68b5a0ad.tar.gz
aoc-1a8d40cc73db9393a5cc623e4fbb38cc68b5a0ad.zip
Cargo init
-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..9e49766
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,6 @@
+[package]
+name = "aoc"
+version = "0.1.0"
+authors = ["Curtis 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() {
+}