summaryrefslogtreecommitdiffstats
path: root/day14b/Cargo.toml
diff options
context:
space:
mode:
authorShivesh Mandalia <mail@shivesh.org>2023-01-08 19:47:17 +0000
committerShivesh Mandalia <mail@shivesh.org>2023-01-08 19:47:17 +0000
commit3c03c8b85457c04c1cc4f08a5542aa596f8228e3 (patch)
tree10f8bebe30531ca048193c02966d7cc6db45047c /day14b/Cargo.toml
parent733c909873edd6f783d52960b7faac0aad5902c2 (diff)
downloadadvent_of_code_2022-3c03c8b85457c04c1cc4f08a5542aa596f8228e3.tar.gz
advent_of_code_2022-3c03c8b85457c04c1cc4f08a5542aa596f8228e3.zip
complete day 14HEADmaster
Diffstat (limited to 'day14b/Cargo.toml')
-rw-r--r--day14b/Cargo.toml11
1 files changed, 11 insertions, 0 deletions
diff --git a/day14b/Cargo.toml b/day14b/Cargo.toml
new file mode 100644
index 0000000..7331590
--- /dev/null
+++ b/day14b/Cargo.toml
@@ -0,0 +1,11 @@
+[package]
+name = "day14b"
+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"