summaryrefslogtreecommitdiffstats
path: root/day11b/Cargo.toml
diff options
context:
space:
mode:
authorShivesh Mandalia <mail@shivesh.org>2023-01-01 19:36:55 +0000
committerShivesh Mandalia <mail@shivesh.org>2023-01-01 19:36:55 +0000
commit55193703cff35373f291e5243330f038d9fc62e7 (patch)
treead236d2cc877a99f117f0021968f0618000706a9 /day11b/Cargo.toml
parent67a326403f50929586fc27bc845fc4a4290ec1ec (diff)
downloadadvent_of_code_2022-55193703cff35373f291e5243330f038d9fc62e7.tar.gz
advent_of_code_2022-55193703cff35373f291e5243330f038d9fc62e7.zip
complete day 11
Diffstat (limited to 'day11b/Cargo.toml')
-rw-r--r--day11b/Cargo.toml11
1 files changed, 11 insertions, 0 deletions
diff --git a/day11b/Cargo.toml b/day11b/Cargo.toml
new file mode 100644
index 0000000..cb76776
--- /dev/null
+++ b/day11b/Cargo.toml
@@ -0,0 +1,11 @@
+[package]
+name = "day11b"
+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"