From 71daf2a06ca411ab821931d4202875be1b0b4026 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Fri, 2 Sep 2022 21:02:29 +0000
Subject: [PATCH] Bump clap from 3.2.19 to 3.2.20 (#2260)
Bumps [clap](https://github.com/clap-rs/clap) from 3.2.19 to 3.2.20.
Release notes
Sourced from clap's releases.
v3.2.20
[3.2.20] - 2022-09-02
Features
ArgMatches::get_count
help for ArgAction::Count
ArgMatches::get_flag
help for ArgAction::SetTrue
/ ArgAction::SetFalse
Changelog
Sourced from clap's changelog.
[3.2.20] - 2022-09-02
Features
ArgMatches::get_count
help for ArgAction::Count
ArgMatches::get_flag
help for ArgAction::SetTrue
/ ArgAction::SetFalse
Commits
ddcd13b
chore: Release
9d35abc
docs: Update changelog
39aba08
Merge pull request #4171 from epage/helper2
2d5fea5
feat(parser): Provide convenience for SetTrue
d2a1f5a
feat(parser): Provide convenience accessor for Counts
3c91438
chore: Release
75f17b6
docs: Update changelog
19c9222
Merge pull request #4146 from Calder-Ty/bugfix/3861_backport
f7af765
fix: Add possible vals to man for positional args
9b4c276
fix: Use roff bullet lists for possible_values
- Additional commits viewable in compare view
[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=clap&package-manager=cargo&previous-version=3.2.19&new-version=3.2.20)](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_cli/Cargo.toml | 2 +-
boa_tester/Cargo.toml | 2 +-
3 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/Cargo.lock b/Cargo.lock
index b6f6a4c093..285bba2381 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -55,7 +55,7 @@ version = "0.15.0"
dependencies = [
"boa_engine",
"boa_interner",
- "clap 3.2.19",
+ "clap 3.2.20",
"colored",
"jemallocator",
"phf",
@@ -147,7 +147,7 @@ dependencies = [
"boa_engine",
"boa_gc",
"boa_interner",
- "clap 3.2.19",
+ "clap 3.2.20",
"colored",
"fxhash",
"gc",
@@ -248,9 +248,9 @@ dependencies = [
[[package]]
name = "clap"
-version = "3.2.19"
+version = "3.2.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "68d43934757334b5c0519ff882e1ab9647ac0258b47c24c4f490d78e42697fd5"
+checksum = "23b71c3ce99b7611011217b366d923f1d0a7e07a92bb2dbf1e84508c673ca3bd"
dependencies = [
"atty",
"bitflags",
diff --git a/boa_cli/Cargo.toml b/boa_cli/Cargo.toml
index 78a54a53b8..d18ba1bb70 100644
--- a/boa_cli/Cargo.toml
+++ b/boa_cli/Cargo.toml
@@ -16,7 +16,7 @@ boa_engine = { path = "../boa_engine", features = ["deser", "console"], version
boa_interner = { path = "../boa_interner", version = "0.15.0" }
rustyline = "10.0.0"
rustyline-derive = "0.7.0"
-clap = { version = "3.2.19", features = ["derive"] }
+clap = { version = "3.2.20", features = ["derive"] }
serde_json = "1.0.85"
colored = "2.0.0"
regex = "1.6.0"
diff --git a/boa_tester/Cargo.toml b/boa_tester/Cargo.toml
index b0c3d82649..85a33cb918 100644
--- a/boa_tester/Cargo.toml
+++ b/boa_tester/Cargo.toml
@@ -15,7 +15,7 @@ publish = false
boa_engine = { path = "../boa_engine", features = ["intl"], version = "0.15.0" }
boa_interner = { path = "../boa_interner", version = "0.15.0" }
boa_gc = { path = "../boa_gc", version = "0.15.0" }
-clap = { version = "3.2.19", features = ["derive"] }
+clap = { version = "3.2.20", features = ["derive"] }
serde = { version = "1.0.144", features = ["derive"] }
serde_yaml = "0.9.10"
serde_json = "1.0.85"