summaryrefslogtreecommitdiffstats
path: root/day07b/Cargo.toml
diff options
context:
space:
mode:
authorShivesh Mandalia <mail@shivesh.org>2022-12-22 19:40:03 +0000
committerShivesh Mandalia <mail@shivesh.org>2022-12-22 19:40:03 +0000
commita4ea4c07178c0d77020815580410474ced4a83be (patch)
treec5d2a440d1252e75ba3a2ad24533822541d03b8e /day07b/Cargo.toml
parent8f85eafcf28ecc77607ad2b54b4bde3bd07885bb (diff)
downloadadvent_of_code_2022-a4ea4c07178c0d77020815580410474ced4a83be.tar.gz
advent_of_code_2022-a4ea4c07178c0d77020815580410474ced4a83be.zip
complete day 7
Diffstat (limited to 'day07b/Cargo.toml')
-rw-r--r--day07b/Cargo.toml11
1 files changed, 11 insertions, 0 deletions
diff --git a/day07b/Cargo.toml b/day07b/Cargo.toml
new file mode 100644
index 0000000..6dc7ca6
--- /dev/null
+++ b/day07b/Cargo.toml
@@ -0,0 +1,11 @@
+[package]
+name = "day07b"
+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"] }
+nom = "7.1.1"
+itertools = "0.10.5"