summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2023-08-15 11:08:41 -0400
committerAndrew Gallant <jamslam@gmail.com>2023-08-15 11:08:41 -0400
commit2af3734e0c0d729479d697cc0ba40fa00ef92358 (patch)
tree7a62bb1d22041c496d6a3897bfa93864a0f982a5
parent61733f6378b62fa2dc2e7f3eff2f2e7182069ca9 (diff)
deps: update aho-corasick
This brings in [1,2], which improves memory usage substantially when Aho-Corasick is used. [1]: https://github.com/BurntSushi/aho-corasick/pull/120 [2]: https://github.com/BurntSushi/aho-corasick/pull/121
-rw-r--r--Cargo.lock4
1 files changed, 2 insertions, 2 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 1fd02037..9fede95e 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -4,9 +4,9 @@ version = 3
[[package]]
name = "aho-corasick"
-version = "1.0.2"
+version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "43f6cb1bf222025340178f382c426f13757b2960e89779dfcb319c32542a5a41"
+checksum = "6748e8def348ed4d14996fa801f4122cd763fff530258cdc03f64b25f89d3a5a"
dependencies = [
"memchr",
]