summaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorMartin Ashby <martin@ashbysoft.com>2022-12-05 22:46:27 +0000
committerMartin Ashby <martin@ashbysoft.com>2022-12-05 22:46:27 +0000
commit4fcbe72a62529745a85011552ae1a6659d770f93 (patch)
tree2bc394ad69d605702440cb0eb8cdcf910536efee /Cargo.lock
parent11a3e07268362bc1ee61b9d3f5fa6db6e12ac707 (diff)
downloadaoc2022-4fcbe72a62529745a85011552ae1a6659d770f93.tar.gz
aoc2022-4fcbe72a62529745a85011552ae1a6659d770f93.tar.bz2
aoc2022-4fcbe72a62529745a85011552ae1a6659d770f93.tar.xz
aoc2022-4fcbe72a62529745a85011552ae1a6659d770f93.zip
day5
Not super happy with this, fell back to iterative programming pretty heavily (: Also a ton of .unwrap(), but this is an artifical problem not a real world
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock33
1 files changed, 33 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index a1c40dc..7499e33 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -3,13 +3,46 @@
version = 3
[[package]]
+name = "aho-corasick"
+version = "0.7.20"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac"
+dependencies = [
+ "memchr",
+]
+
+[[package]]
name = "aoc2022"
version = "0.1.0"
dependencies = [
+ "regex",
"simple-error",
]
[[package]]
+name = "memchr"
+version = "2.5.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
+
+[[package]]
+name = "regex"
+version = "1.7.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e076559ef8e241f2ae3479e36f97bd5741c0330689e217ad51ce2c76808b868a"
+dependencies = [
+ "aho-corasick",
+ "memchr",
+ "regex-syntax",
+]
+
+[[package]]
+name = "regex-syntax"
+version = "0.6.28"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848"
+
+[[package]]
name = "simple-error"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"