From 69067cac22423ce3c74807a9330f0b64244dd689 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 20 Dec 2022 10:36:49 +0000 Subject: [PATCH] Bump serde from 1.0.150 to 1.0.151 (#2497) Bumps [serde](https://github.com/serde-rs/serde) from 1.0.150 to 1.0.151.
Release notes

Sourced from serde's releases.

v1.0.151

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=serde&package-manager=cargo&previous-version=1.0.150&new-version=1.0.151)](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_ast/Cargo.toml | 2 +- boa_engine/Cargo.toml | 2 +- boa_interner/Cargo.toml | 2 +- boa_tester/Cargo.toml | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4494d572a6..d4cace08ba 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1638,18 +1638,18 @@ checksum = "9c8132065adcfd6e02db789d9285a0deb2f3fcb04002865ab67d5fb103533898" [[package]] name = "serde" -version = "1.0.150" +version = "1.0.151" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e326c9ec8042f1b5da33252c8a37e9ffbd2c9bef0155215b6e6c80c790e05f91" +checksum = "97fed41fc1a24994d044e6db6935e69511a1153b52c15eb42493b26fa87feba0" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.150" +version = "1.0.151" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "42a3df25b0713732468deadad63ab9da1f1fd75a48a15024b50363f128db627e" +checksum = "255abe9a125a985c05190d687b320c12f9b1f0b99445e608c21ba0782c719ad8" dependencies = [ "proc-macro2", "quote", diff --git a/boa_ast/Cargo.toml b/boa_ast/Cargo.toml index 4741c14267..8e625204f6 100644 --- a/boa_ast/Cargo.toml +++ b/boa_ast/Cargo.toml @@ -19,7 +19,7 @@ fuzz = ["arbitrary", "boa_interner/fuzz", "num-bigint/arbitrary"] boa_interner.workspace = true boa_macros.workspace = true rustc-hash = "1.1.0" -serde = { version = "1.0.150", features = ["derive"], optional = true } +serde = { version = "1.0.151", features = ["derive"], optional = true } bitflags = "1.3.2" num-bigint = "0.4.3" arbitrary = { version = "1", optional = true, features = ["derive"] } diff --git a/boa_engine/Cargo.toml b/boa_engine/Cargo.toml index 6852bd5eab..8537d6c7f6 100644 --- a/boa_engine/Cargo.toml +++ b/boa_engine/Cargo.toml @@ -39,7 +39,7 @@ boa_profiler.workspace = true boa_macros.workspace = true boa_ast.workspace = true boa_parser.workspace = true -serde = { version = "1.0.150", features = ["derive", "rc"] } +serde = { version = "1.0.151", features = ["derive", "rc"] } serde_json = "1.0.91" rand = "0.8.5" num-traits = "0.2.15" diff --git a/boa_interner/Cargo.toml b/boa_interner/Cargo.toml index 9908db99df..9721754278 100644 --- a/boa_interner/Cargo.toml +++ b/boa_interner/Cargo.toml @@ -15,7 +15,7 @@ fuzz = ["arbitrary"] [dependencies] boa_macros.workspace = true -serde = { version = "1.0.150", features = ["derive"], optional = true } +serde = { version = "1.0.151", features = ["derive"], optional = true } phf = { version = "0.11.1", features = ["macros"] } rustc-hash = "1.1.0" static_assertions = "1.1.0" diff --git a/boa_tester/Cargo.toml b/boa_tester/Cargo.toml index 10e9044fc1..b64c26777e 100644 --- a/boa_tester/Cargo.toml +++ b/boa_tester/Cargo.toml @@ -16,7 +16,7 @@ boa_engine = { workspace = true, features = ["intl"] } boa_gc.workspace = true boa_parser.workspace = true clap = { version = "4.0.29", features = ["derive"] } -serde = { version = "1.0.150", features = ["derive"] } +serde = { version = "1.0.151", features = ["derive"] } serde_yaml = "0.9.16" serde_json = "1.0.91" bitflags = "1.3.2"