From 2377c2a158fb9efcca749739b551b8c524537c30 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 8 May 2026 19:53:52 +0000 Subject: [PATCH] Bump hashbrown from 0.15.5 to 0.17.0 Bumps [hashbrown](https://github.com/rust-lang/hashbrown) from 0.15.5 to 0.17.0. - [Release notes](https://github.com/rust-lang/hashbrown/releases) - [Changelog](https://github.com/rust-lang/hashbrown/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-lang/hashbrown/compare/v0.15.5...v0.17.0) --- updated-dependencies: - dependency-name: hashbrown dependency-version: 0.17.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 16 +++++++++++----- Cargo.toml | 2 +- 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fd625c2a..4fa10053 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -198,9 +198,9 @@ dependencies = [ [[package]] name = "foldhash" -version = "0.1.5" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" +checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb" [[package]] name = "form_urlencoded" @@ -216,6 +216,12 @@ name = "hashbrown" version = "0.15.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" + +[[package]] +name = "hashbrown" +version = "0.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51" dependencies = [ "foldhash", ] @@ -334,7 +340,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f2481980430f9f78649238835720ddccc57e52df14ffce1c6f37391d61b563e9" dependencies = [ "equivalent", - "hashbrown", + "hashbrown 0.15.5", ] [[package]] @@ -363,7 +369,7 @@ dependencies = [ "chrono", "dyn-clone", "encoding_rs", - "hashbrown", + "hashbrown 0.17.0", "java_class_proto", "java_constants", "jvm", @@ -387,7 +393,7 @@ dependencies = [ "dyn-clone", "dyn-hash", "event-listener", - "hashbrown", + "hashbrown 0.17.0", "java_constants", "nom", "parking_lot", diff --git a/Cargo.toml b/Cargo.toml index 6b8a1223..f7e9ad33 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ async-trait = { version = "^0.1", default-features = false } bytemuck = { version = "^1.24", default-features = false, features = ["extern_crate_alloc"] } dyn-clone = { version = "^1.0", default-features = false } dyn-hash = { version = "^0.2", default-features = false } -hashbrown = { version = "^0.15", features = ["default-hasher"], default-features = false } +hashbrown = { version = "^0.17", features = ["default-hasher"], default-features = false } nom = { version = "^7.1", default-features = false, features = ["alloc"] } parking_lot = { version = "^0.12", default-features = false } tracing = { version = "^0.1", default-features = false, features = ["attributes"] }