From 95213afab4eae2f1e67f6cdd4305867cc3f187d4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 10 Apr 2026 03:08:24 +0000 Subject: [PATCH] Bump hashbrown from 0.16.1 to 0.17.0 Bumps [hashbrown](https://github.com/rust-lang/hashbrown) from 0.16.1 to 0.17.0. - [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.16.1...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 | 11 ++++++++--- src/hyperlight-js-runtime/Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index eeeee99..11ab01d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1291,8 +1291,6 @@ dependencies = [ "allocator-api2", "equivalent", "foldhash 0.2.0", - "serde", - "serde_core", ] [[package]] @@ -1300,6 +1298,13 @@ name = "hashbrown" version = "0.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51" +dependencies = [ + "allocator-api2", + "equivalent", + "foldhash 0.2.0", + "serde", + "serde_core", +] [[package]] name = "heck" @@ -1618,7 +1623,7 @@ dependencies = [ "clap", "escargot", "fn-traits", - "hashbrown 0.16.1", + "hashbrown 0.17.0", "hex", "hmac", "hyperlight-common", diff --git a/src/hyperlight-js-runtime/Cargo.toml b/src/hyperlight-js-runtime/Cargo.toml index b273ca6..f476ade 100644 --- a/src/hyperlight-js-runtime/Cargo.toml +++ b/src/hyperlight-js-runtime/Cargo.toml @@ -19,7 +19,7 @@ test = false anyhow = { version = "1.0", default-features = false } base64 = {version = "0.22", default-features = false, features = ["alloc"] } fn-traits = "0.2.0" -hashbrown = { version = "0.16", features = ["serde"] } +hashbrown = { version = "0.17", features = ["serde"] } hex = { version = "0.4.3", default-features = false, features = ["alloc"] } hmac = { version = "0.12" , default-features = false, features = ["reset"]} rquickjs = { version = "0.11", default-features = false, features = ["bindgen", "futures", "macro", "loader"] }