From 03a83a7e565cf020aff940ba208ade2fa39db26c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Mar 2023 21:43:58 +0000 Subject: [PATCH] Bump indexmap from 1.9.2 to 1.9.3 (#2749) Bumps [indexmap](https://github.com/bluss/indexmap) from 1.9.2 to 1.9.3.
Changelog

Sourced from indexmap's changelog.

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=indexmap&package-manager=cargo&previous-version=1.9.2&new-version=1.9.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
--- Cargo.lock | 4 ++-- boa_engine/Cargo.toml | 2 +- boa_interner/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 11efdd6032..0fb456a466 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2267,9 +2267,9 @@ checksum = "ce23b50ad8242c51a442f3ff322d56b02f08852c77e4c0b4d3fd684abc89c683" [[package]] name = "indexmap" -version = "1.9.2" +version = "1.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399" +checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" dependencies = [ "autocfg", "hashbrown 0.12.3", diff --git a/boa_engine/Cargo.toml b/boa_engine/Cargo.toml index eb3b829271..0d9e121427 100644 --- a/boa_engine/Cargo.toml +++ b/boa_engine/Cargo.toml @@ -55,7 +55,7 @@ rustc-hash = "1.1.0" num-bigint = { version = "0.4.3", features = ["serde"] } num-integer = "0.1.45" bitflags = "2.0.2" -indexmap = "1.9.2" +indexmap = "1.9.3" ryu-js = "0.2.2" chrono = { version = "0.4.24", default-features = false, features = ["clock", "std", "wasmbind"] } fast-float = "0.2.0" diff --git a/boa_interner/Cargo.toml b/boa_interner/Cargo.toml index 4831b5b137..f48191de64 100644 --- a/boa_interner/Cargo.toml +++ b/boa_interner/Cargo.toml @@ -20,7 +20,7 @@ phf = { version = "0.11.1", default-features = false, features = ["macros"] } rustc-hash = { version = "1.1.0", default-features = false } static_assertions = "1.1.0" once_cell = {version = "1.17.1", default-features = false, features = ["critical-section"]} -indexmap = "1.9.2" +indexmap = "1.9.3" serde = { version = "1.0.156", features = ["derive"], optional = true } arbitrary = { version = "1", features = ["derive"], optional = true } hashbrown = { version = "0.13.2", default-features = false, features = ["inline-more"] }