summaryrefslogtreecommitdiffstats
path: root/day13b/Cargo.toml
diff options
context:
space:
mode:
authorShivesh Mandalia <mail@shivesh.org>2023-01-06 22:39:49 +0000
committerShivesh Mandalia <mail@shivesh.org>2023-01-06 22:39:49 +0000
commit733c909873edd6f783d52960b7faac0aad5902c2 (patch)
tree2383fbb96080da132fd7a7afc70bade4128e99c0 /day13b/Cargo.toml
parent2701b6e53385380425fd13159f0971ac791a1d5a (diff)
downloadadvent_of_code_2022-733c909873edd6f783d52960b7faac0aad5902c2.tar.gz
advent_of_code_2022-733c909873edd6f783d52960b7faac0aad5902c2.zip
complete day 13
Diffstat (limited to 'day13b/Cargo.toml')
-rw-r--r--day13b/Cargo.toml11
1 files changed, 11 insertions, 0 deletions
diff --git a/day13b/Cargo.toml b/day13b/Cargo.toml
new file mode 100644
index 0000000..c3bc83c
--- /dev/null
+++ b/day13b/Cargo.toml
@@ -0,0 +1,11 @@
+[package]
+name = "day13b"
+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"