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"] }