From 090d7ace806becb0b63a9562221d0fe5e0cede31 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Jan 2022 21:21:42 +0000 Subject: [PATCH] Bump serde from 1.0.134 to 1.0.135 (#1797) Bumps [serde](https://github.com/serde-rs/serde) from 1.0.134 to 1.0.135.
Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=serde&package-manager=cargo&previous-version=1.0.134&new-version=1.0.135)](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/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 f7fd70752c..485251756e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1244,9 +1244,9 @@ checksum = "568a8e6258aa33c13358f81fd834adb854c6f7c9468520910a9b1e8fac068012" [[package]] name = "serde" -version = "1.0.134" +version = "1.0.135" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "96b3c34c1690edf8174f5b289a336ab03f568a4460d8c6df75f2f3a692b3bc6a" +checksum = "2cf9235533494ea2ddcdb794665461814781c53f19d87b76e571a1c35acbad2b" dependencies = [ "serde_derive", ] @@ -1263,9 +1263,9 @@ dependencies = [ [[package]] name = "serde_derive" -version = "1.0.134" +version = "1.0.135" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "784ed1fbfa13fe191077537b0d70ec8ad1e903cfe04831da608aa36457cb653d" +checksum = "8dcde03d87d4c973c04be249e7d8f0b35db1c848c487bd43032808e59dd8328d" dependencies = [ "proc-macro2", "quote", diff --git a/boa/Cargo.toml b/boa/Cargo.toml index c956ce86a6..f15b8d0c0c 100644 --- a/boa/Cargo.toml +++ b/boa/Cargo.toml @@ -22,7 +22,7 @@ console = [] boa_unicode = { path = "../boa_unicode", version = "0.13.0" } boa_interner = { path = "../boa_interner", version = "0.13.0" } gc = { version = "0.4.1", features = ["derive"] } -serde = { version = "1.0.134", features = ["derive", "rc"] } +serde = { version = "1.0.135", features = ["derive", "rc"] } serde_json = "1.0.78" rand = "0.8.4" num-traits = "0.2.14" diff --git a/boa_interner/Cargo.toml b/boa_interner/Cargo.toml index 6d9aaff3d2..934064372a 100644 --- a/boa_interner/Cargo.toml +++ b/boa_interner/Cargo.toml @@ -11,5 +11,5 @@ rust-version = "1.56" [dependencies] string-interner = "0.14.0" -serde = { version = "1.0.134", features = ["derive"], optional = true } +serde = { version = "1.0.135", features = ["derive"], optional = true } gc = { version = "0.4.1", features = ["derive"] } diff --git a/boa_tester/Cargo.toml b/boa_tester/Cargo.toml index 7e2f616b1c..d20332af6d 100644 --- a/boa_tester/Cargo.toml +++ b/boa_tester/Cargo.toml @@ -14,7 +14,7 @@ rust-version = "1.56" [dependencies] Boa = { path = "../boa" } structopt = "0.3.26" -serde = { version = "1.0.134", features = ["derive"] } +serde = { version = "1.0.135", features = ["derive"] } serde_yaml = "0.8.23" serde_json = "1.0.78" bitflags = "1.3.2"