summaryrefslogtreecommitdiffstats
path: root/day12b/Cargo.toml
diff options
context:
space:
mode:
authorShivesh Mandalia <mail@shivesh.org>2023-01-01 22:04:46 +0000
committerShivesh Mandalia <mail@shivesh.org>2023-01-01 22:04:46 +0000
commit2701b6e53385380425fd13159f0971ac791a1d5a (patch)
tree95c72675b37e18233fa30fcdef5ed5b2c79fab9c /day12b/Cargo.toml
parent55193703cff35373f291e5243330f038d9fc62e7 (diff)
downloadadvent_of_code_2022-2701b6e53385380425fd13159f0971ac791a1d5a.tar.gz
advent_of_code_2022-2701b6e53385380425fd13159f0971ac791a1d5a.zip
complete day 12
Diffstat (limited to 'day12b/Cargo.toml')
-rw-r--r--day12b/Cargo.toml11
1 files changed, 11 insertions, 0 deletions
diff --git a/day12b/Cargo.toml b/day12b/Cargo.toml
new file mode 100644
index 0000000..b5465cf
--- /dev/null
+++ b/day12b/Cargo.toml
@@ -0,0 +1,11 @@
+[package]
+name = "day12b"
+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"] }
+itertools = "0.10.5"
+pathfinding = "4.2.0"