From 423c16af3445f500cdaec3bc2ac723f6621fa9e1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 28 Feb 2023 15:50:56 +0000 Subject: [PATCH] Bump clap from 4.1.6 to 4.1.7 (#2623) Bumps [clap](https://github.com/clap-rs/clap) from 4.1.6 to 4.1.7.
Release notes

Sourced from clap's releases.

v4.1.7

[4.1.7] - 2023-02-27

Fixes

Changelog

Sourced from clap's changelog.

[4.1.7] - 2023-02-27

Fixes

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=clap&package-manager=cargo&previous-version=4.1.6&new-version=4.1.7)](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 | 12 ++++++------ boa_cli/Cargo.toml | 2 +- boa_tester/Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3bd8d7b651..29dc590c9a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -299,7 +299,7 @@ dependencies = [ "boa_ast", "boa_engine", "boa_parser", - "clap 4.1.6", + "clap 4.1.7", "colored", "jemallocator", "phf", @@ -449,7 +449,7 @@ dependencies = [ "bitflags", "boa_engine", "boa_gc", - "clap 4.1.6", + "clap 4.1.7", "color-eyre", "colored", "fxhash", @@ -656,9 +656,9 @@ dependencies = [ [[package]] name = "clap" -version = "4.1.6" +version = "4.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ec0b0588d44d4d63a87dbd75c136c166bbfd9a86a31cb89e09906521c7d3f5e3" +checksum = "2f3061d6db6d8fcbbd4b05e057f2acace52e64e96b498c08c2d7a4e65addd340" dependencies = [ "bitflags", "clap_derive", @@ -671,9 +671,9 @@ dependencies = [ [[package]] name = "clap_derive" -version = "4.1.0" +version = "4.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "684a277d672e91966334af371f1a7b5833f9aa00b07c84e92fbce95e00208ce8" +checksum = "34d122164198950ba84a918270a3bb3f7ededd25e15f7451673d986f55bd2667" dependencies = [ "heck", "proc-macro-error", diff --git a/boa_cli/Cargo.toml b/boa_cli/Cargo.toml index f2b8d36f09..d009b50a91 100644 --- a/boa_cli/Cargo.toml +++ b/boa_cli/Cargo.toml @@ -16,7 +16,7 @@ boa_engine = { workspace = true, features = ["deser", "console", "flowgraph"] } boa_ast = { workspace = true, features = ["serde"]} boa_parser.workspace = true rustyline = { version = "11.0.0", features = ["derive"]} -clap = { version = "4.1.6", features = ["derive"] } +clap = { version = "4.1.7", features = ["derive"] } serde_json = "1.0.93" colored = "2.0.0" regex = "1.7.1" diff --git a/boa_tester/Cargo.toml b/boa_tester/Cargo.toml index 69cae3049d..f98b60d0ba 100644 --- a/boa_tester/Cargo.toml +++ b/boa_tester/Cargo.toml @@ -14,7 +14,7 @@ rust-version.workspace = true [dependencies] boa_engine.workspace = true boa_gc.workspace = true -clap = { version = "4.1.6", features = ["derive"] } +clap = { version = "4.1.7", features = ["derive"] } serde = { version = "1.0.152", features = ["derive"] } serde_yaml = "0.9.17" serde_json = "1.0.93"