summaryrefslogtreecommitdiffstats
path: root/day02b/Cargo.toml
diff options
context:
space:
mode:
authorShivesh Mandalia <mail@shivesh.org>2022-12-20 18:08:16 +0000
committerShivesh Mandalia <mail@shivesh.org>2022-12-20 18:08:16 +0000
commit277254232b852283cbc6bc6a0f31a588c458bf6a (patch)
treef0b46e514f4d2bb45b3e57d50410b6c5cb15c6f6 /day02b/Cargo.toml
parent57d36aafff123f2379c7665f7be85703af75a1b1 (diff)
downloadadvent_of_code_2022-277254232b852283cbc6bc6a0f31a588c458bf6a.tar.gz
advent_of_code_2022-277254232b852283cbc6bc6a0f31a588c458bf6a.zip
complete day 2
Diffstat (limited to 'day02b/Cargo.toml')
-rw-r--r--day02b/Cargo.toml10
1 files changed, 10 insertions, 0 deletions
diff --git a/day02b/Cargo.toml b/day02b/Cargo.toml
new file mode 100644
index 0000000..400f4a8
--- /dev/null
+++ b/day02b/Cargo.toml
@@ -0,0 +1,10 @@
+[package]
+name = "day02b"
+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"