From 72ae29b0faa0da29690f07e3b294e005a88e3639 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 May 2022 18:05:58 +0000 Subject: [PATCH] Bump serde from 1.0.136 to 1.0.137 (#2052) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps [serde](https://github.com/serde-rs/serde) from 1.0.136 to 1.0.137.
Release notes

Sourced from serde's releases.

v1.0.137

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=serde&package-manager=cargo&previous-version=1.0.136&new-version=1.0.137)](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 | 8 ++++---- boa_engine/Cargo.toml | 2 +- boa_interner/Cargo.toml | 2 +- boa_tester/Cargo.toml | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 80d3255328..e160dd552d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1236,9 +1236,9 @@ checksum = "d65bd28f48be7196d222d95b9243287f48d27aca604e08497513019ff0502cc4" [[package]] name = "serde" -version = "1.0.136" +version = "1.0.137" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ce31e24b01e1e524df96f1c2fdd054405f8d7376249a5110886fb4b658484789" +checksum = "61ea8d54c77f8315140a05f4c7237403bf38b72704d031543aa1d16abbf517d1" dependencies = [ "serde_derive", ] @@ -1255,9 +1255,9 @@ dependencies = [ [[package]] name = "serde_derive" -version = "1.0.136" +version = "1.0.137" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08597e7152fcd306f41838ed3e37be9eaeed2b61c42e2117266a554fab4662f9" +checksum = "1f26faba0c3959972377d3b2d306ee9f71faee9714294e41bb777f83f88578be" dependencies = [ "proc-macro2", "quote", diff --git a/boa_engine/Cargo.toml b/boa_engine/Cargo.toml index c4cd4ea2af..a824804d49 100644 --- a/boa_engine/Cargo.toml +++ b/boa_engine/Cargo.toml @@ -24,7 +24,7 @@ boa_interner = { path = "../boa_interner", version = "0.14.0" } boa_gc = { path = "../boa_gc", version = "0.14.0" } gc = "0.4.1" boa_profiler = { path = "../boa_profiler", version = "0.14.0" } -serde = { version = "1.0.136", features = ["derive", "rc"] } +serde = { version = "1.0.137", features = ["derive", "rc"] } serde_json = "1.0.80" rand = "0.8.5" num-traits = "0.2.14" diff --git a/boa_interner/Cargo.toml b/boa_interner/Cargo.toml index 4793cdfe5e..53633c1f1b 100644 --- a/boa_interner/Cargo.toml +++ b/boa_interner/Cargo.toml @@ -12,5 +12,5 @@ license = "Unlicense/MIT" [dependencies] string-interner = "0.14.0" -serde = { version = "1.0.136", features = ["derive"], optional = true } +serde = { version = "1.0.137", features = ["derive"], optional = true } gc = { version = "0.4.1", features = ["derive"] } diff --git a/boa_tester/Cargo.toml b/boa_tester/Cargo.toml index 6b710c0cb0..1b8486693b 100644 --- a/boa_tester/Cargo.toml +++ b/boa_tester/Cargo.toml @@ -15,7 +15,7 @@ publish = false boa_engine = { path = "../boa_engine", version = "0.14.0" } boa_interner = { path = "../boa_interner", version = "0.14.0" } structopt = "0.3.26" -serde = { version = "1.0.136", features = ["derive"] } +serde = { version = "1.0.137", features = ["derive"] } serde_yaml = "0.8.23" serde_json = "1.0.80" bitflags = "1.3.2"