summaryrefslogtreecommitdiffstats
path: root/day10a/Cargo.toml
diff options
context:
space:
mode:
authorShivesh Mandalia <mail@shivesh.org>2022-12-30 17:20:17 +0000
committerShivesh Mandalia <mail@shivesh.org>2022-12-30 17:20:17 +0000
commit67a326403f50929586fc27bc845fc4a4290ec1ec (patch)
treef58b204383bf86fdf6441b25b80cd15b5fa7d8a6 /day10a/Cargo.toml
parente9b61b1519a9b1dc34944f269b6fc9b34715b278 (diff)
downloadadvent_of_code_2022-67a326403f50929586fc27bc845fc4a4290ec1ec.tar.gz
advent_of_code_2022-67a326403f50929586fc27bc845fc4a4290ec1ec.zip
complete day 10
Diffstat (limited to 'day10a/Cargo.toml')
-rw-r--r--day10a/Cargo.toml10
1 files changed, 10 insertions, 0 deletions
diff --git a/day10a/Cargo.toml b/day10a/Cargo.toml
new file mode 100644
index 0000000..c4bc0cb
--- /dev/null
+++ b/day10a/Cargo.toml
@@ -0,0 +1,10 @@
+[package]
+name = "day10a"
+version = "0.1.0"
+edition = "2021"
+
+# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
+
+[dependencies]
+clap = { version = "3.2.20", features = ["derive"] }
+itertools = "0.10.5"