summaryrefslogtreecommitdiffstats
path: root/day04b/Cargo.toml
diff options
context:
space:
mode:
authorShivesh Mandalia <mail@shivesh.org>2022-12-20 23:33:51 +0000
committerShivesh Mandalia <mail@shivesh.org>2022-12-20 23:33:51 +0000
commita667c19882e1feb542a122781b4efe5545dea0dd (patch)
treed7f8a0aa645ad5181995e93381e5c0cf9122cd42 /day04b/Cargo.toml
parent5941c6c20ab337194514a5d2bf2b9b9c8b0b3d32 (diff)
downloadadvent_of_code_2022-a667c19882e1feb542a122781b4efe5545dea0dd.tar.gz
advent_of_code_2022-a667c19882e1feb542a122781b4efe5545dea0dd.zip
complete day 4
Diffstat (limited to 'day04b/Cargo.toml')
-rw-r--r--day04b/Cargo.toml10
1 files changed, 10 insertions, 0 deletions
diff --git a/day04b/Cargo.toml b/day04b/Cargo.toml
new file mode 100644
index 0000000..75c427e
--- /dev/null
+++ b/day04b/Cargo.toml
@@ -0,0 +1,10 @@
+[package]
+name = "day04b"
+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"