summaryrefslogtreecommitdiffstats
path: root/day06b/Cargo.toml
diff options
context:
space:
mode:
authorShivesh Mandalia <mail@shivesh.org>2022-12-21 21:20:05 +0000
committerShivesh Mandalia <mail@shivesh.org>2022-12-21 21:20:05 +0000
commit8f85eafcf28ecc77607ad2b54b4bde3bd07885bb (patch)
treeff0ae03dd95beb1bc8c6020c87190aae7fb171cb /day06b/Cargo.toml
parent666b11bc77f17d6d2b5a466c56ea7710bb9134fd (diff)
downloadadvent_of_code_2022-8f85eafcf28ecc77607ad2b54b4bde3bd07885bb.tar.gz
advent_of_code_2022-8f85eafcf28ecc77607ad2b54b4bde3bd07885bb.zip
complete day 6
Diffstat (limited to 'day06b/Cargo.toml')
-rw-r--r--day06b/Cargo.toml10
1 files changed, 10 insertions, 0 deletions
diff --git a/day06b/Cargo.toml b/day06b/Cargo.toml
new file mode 100644
index 0000000..61dface
--- /dev/null
+++ b/day06b/Cargo.toml
@@ -0,0 +1,10 @@
+[package]
+name = "day06b"
+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"