summaryrefslogtreecommitdiffstats
path: root/day03b/Cargo.toml
diff options
context:
space:
mode:
authorShivesh Mandalia <mail@shivesh.org>2022-12-20 21:38:16 +0000
committerShivesh Mandalia <mail@shivesh.org>2022-12-20 21:38:16 +0000
commita1c075cd023714d61a6c9d7bc30a1b711e648d7f (patch)
tree5a6fe056a9092ca402d8820a723868f39443d0fb /day03b/Cargo.toml
parent277254232b852283cbc6bc6a0f31a588c458bf6a (diff)
downloadadvent_of_code_2022-a1c075cd023714d61a6c9d7bc30a1b711e648d7f.tar.gz
advent_of_code_2022-a1c075cd023714d61a6c9d7bc30a1b711e648d7f.zip
complete day 3
Diffstat (limited to 'day03b/Cargo.toml')
-rw-r--r--day03b/Cargo.toml10
1 files changed, 10 insertions, 0 deletions
diff --git a/day03b/Cargo.toml b/day03b/Cargo.toml
new file mode 100644
index 0000000..3b746b6
--- /dev/null
+++ b/day03b/Cargo.toml
@@ -0,0 +1,10 @@
+[package]
+name = "day03b"
+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"