From 4084a9dc808c6bfbaea613f58d38452ade5c6e48 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 4 Sep 2025 07:17:17 +0000 Subject: [PATCH] Update hashbrown requirement from 0.13.1 to 0.16.0 in /pagefind Updates the requirements on [hashbrown](https://github.com/rust-lang/hashbrown) to permit the latest version. - [Release notes](https://github.com/rust-lang/hashbrown/releases) - [Changelog](https://github.com/rust-lang/hashbrown/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/hashbrown/compare/v0.13.1...v0.16.0) --- updated-dependencies: - dependency-name: hashbrown dependency-version: 0.16.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- pagefind/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pagefind/Cargo.toml b/pagefind/Cargo.toml index fb87732e..fe1e9c56 100644 --- a/pagefind/Cargo.toml +++ b/pagefind/Cargo.toml @@ -56,7 +56,7 @@ charabia = { version = "0.9.3", optional = true, default-features = false, featu ] } unicode-segmentation = "1.10.1" emojis = "0.7.2" -hashbrown = { version = "0.13.1", features = ["serde"] } +hashbrown = { version = "0.16.0", features = ["serde"] } either = "1.9.0" regex = "1.1" minicbor = { version = "2.1.1", features = ["alloc", "derive"] }