diff --git a/Cargo.lock b/Cargo.lock index fd625c2..4fa1005 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 6b8a122..f7e9ad3 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"] }