summaryrefslogtreecommitdiffstats
path: root/day08b/Cargo.toml
diff options
context:
space:
mode:
authorShivesh Mandalia <mail@shivesh.org>2022-12-23 16:05:42 +0000
committerShivesh Mandalia <mail@shivesh.org>2022-12-23 16:05:42 +0000
commit9da51d9db5dd1b3b34d92bc68419eaa28322c844 (patch)
tree6f5e12c9f11cf601d48f6df5fe2c5b8fcfc11140 /day08b/Cargo.toml
parenta4ea4c07178c0d77020815580410474ced4a83be (diff)
downloadadvent_of_code_2022-9da51d9db5dd1b3b34d92bc68419eaa28322c844.tar.gz
advent_of_code_2022-9da51d9db5dd1b3b34d92bc68419eaa28322c844.zip
complete day 8
Diffstat (limited to 'day08b/Cargo.toml')
-rw-r--r--day08b/Cargo.toml11
1 files changed, 11 insertions, 0 deletions
diff --git a/day08b/Cargo.toml b/day08b/Cargo.toml
new file mode 100644
index 0000000..e71c2cd
--- /dev/null
+++ b/day08b/Cargo.toml
@@ -0,0 +1,11 @@
+[package]
+name = "day08b"
+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"