]> localhost Git - adventofcode2024.git/commitdiff
Initial commit
authorJack Kinsey <j.jameskinsey@gmail.com>
Tue, 3 Dec 2024 07:01:04 +0000 (02:01 -0500)
committerJack Kinsey <j.jameskinsey@gmail.com>
Tue, 3 Dec 2024 07:01:04 +0000 (02:01 -0500)
.gitignore [new file with mode: 0644]
Cargo.lock [new file with mode: 0644]
Cargo.toml [new file with mode: 0644]
src/main.rs [new file with mode: 0644]

diff --git a/.gitignore b/.gitignore
new file mode 100644 (file)
index 0000000..ea8c4bf
--- /dev/null
@@ -0,0 +1 @@
+/target
diff --git a/Cargo.lock b/Cargo.lock
new file mode 100644 (file)
index 0000000..cc11b73
--- /dev/null
@@ -0,0 +1,7 @@
+# This file is automatically @generated by Cargo.
+# It is not intended for manual editing.
+version = 3
+
+[[package]]
+name = "adventofcode2024"
+version = "0.1.0"
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644 (file)
index 0000000..83a1806
--- /dev/null
@@ -0,0 +1,6 @@
+[package]
+name = "adventofcode2024"
+version = "0.1.0"
+edition = "2021"
+
+[dependencies]
diff --git a/src/main.rs b/src/main.rs
new file mode 100644 (file)
index 0000000..f79c691
--- /dev/null
@@ -0,0 +1,2 @@
+fn main() {
+}