diff --git a/Cargo.lock b/Cargo.lock index 7ccc7f2bb9f..3691b4b89a9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -428,7 +428,7 @@ version = "0.17.0" dependencies = [ "boa_macros", "boa_profiler", - "hashbrown 0.14.0", + "hashbrown 0.14.1", "thin-vec", ] @@ -452,7 +452,7 @@ dependencies = [ "arbitrary", "boa_gc", "boa_macros", - "hashbrown 0.14.0", + "hashbrown 0.14.1", "indexmap", "once_cell", "phf", @@ -898,7 +898,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856" dependencies = [ "cfg-if", - "hashbrown 0.14.0", + "hashbrown 0.14.1", "lock_api", "once_cell", "parking_lot_core 0.9.8", @@ -1231,9 +1231,9 @@ dependencies = [ [[package]] name = "hashbrown" -version = "0.14.0" +version = "0.14.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a" +checksum = "7dfda62a12f55daeae5015f81b0baea145391cb4520f86c248fc615d72640d12" dependencies = [ "ahash", ] @@ -1677,7 +1677,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ad227c3af19d4914570ad36d30409928b75967c298feb9ea1969db3a610bb14e" dependencies = [ "equivalent", - "hashbrown 0.14.0", + "hashbrown 0.14.1", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index a447d93e6cb..ac3339cde9c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -46,7 +46,7 @@ chrono = { version = "0.4.31", default-features = false } clap = "4.4.5" colored = "2.0.4" fast-float = "0.2.0" -hashbrown = { version = "0.14.0", default-features = false } +hashbrown = { version = "0.14.1", default-features = false } indexmap = "2.0.1" indoc = "2.0.4" jemallocator = "0.5.4"