diff --git a/Cargo.lock b/Cargo.lock index 311d249ea3..e3db049e18 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -948,9 +948,9 @@ checksum = "ce23b50ad8242c51a442f3ff322d56b02f08852c77e4c0b4d3fd684abc89c683" [[package]] name = "indexmap" -version = "1.9.1" +version = "1.9.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e" +checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399" dependencies = [ "autocfg", "hashbrown", diff --git a/boa_engine/Cargo.toml b/boa_engine/Cargo.toml index 2b3b965191..07cfd34877 100644 --- a/boa_engine/Cargo.toml +++ b/boa_engine/Cargo.toml @@ -46,7 +46,7 @@ rustc-hash = "1.1.0" num-bigint = { version = "0.4.3", features = ["serde"] } num-integer = "0.1.45" bitflags = "1.3.2" -indexmap = "1.9.1" +indexmap = "1.9.2" ryu-js = "0.2.2" chrono = "0.4.23" fast-float = "0.2.0" diff --git a/boa_interner/Cargo.toml b/boa_interner/Cargo.toml index 5f07b9289d..269d712c37 100644 --- a/boa_interner/Cargo.toml +++ b/boa_interner/Cargo.toml @@ -20,5 +20,5 @@ phf = { version = "0.11.1", features = ["macros"] } rustc-hash = "1.1.0" static_assertions = "1.1.0" once_cell = "1.16.0" -indexmap = "1.9.1" +indexmap = "1.9.2" arbitrary = { version = "1", optional = true, features = ["derive"] }