From b3ab49999f7b14ef69e3ddde52a78738e0127059 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 29 Nov 2022 17:26:06 +0000 Subject: [PATCH] Bump clap from 4.0.27 to 4.0.28 (#2467) Bumps [clap](https://github.com/clap-rs/clap) from 4.0.27 to 4.0.28.
Release notes

Sourced from clap's releases.

v4.0.28

[4.0.28] - 2022-11-29

Fixes

Changelog

Sourced from clap's changelog.

[4.0.28] - 2022-11-29

Fixes

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=clap&package-manager=cargo&previous-version=4.0.27&new-version=4.0.28)](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 | 18 +++++++++--------- boa_cli/Cargo.toml | 2 +- boa_tester/Cargo.toml | 2 +- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fb96f577f6..5b5fb864c4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -108,7 +108,7 @@ dependencies = [ "boa_ast", "boa_engine", "boa_parser", - "clap 4.0.27", + "clap 4.0.28", "colored", "jemallocator", "phf", @@ -235,7 +235,7 @@ dependencies = [ "boa_engine", "boa_gc", "boa_parser", - "clap 4.0.27", + "clap 4.0.28", "color-eyre", "colored", "fxhash", @@ -350,9 +350,9 @@ dependencies = [ [[package]] name = "clap" -version = "4.0.27" +version = "4.0.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0acbd8d28a0a60d7108d7ae850af6ba34cf2d1257fc646980e5f97ce14275966" +checksum = "f94eecf2f2d0e0220737d9e6d8530da1e903b97dde58ebaf749262e85ce133c9" dependencies = [ "bitflags", "clap_derive", @@ -988,13 +988,13 @@ dependencies = [ [[package]] name = "is-terminal" -version = "0.4.0" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aae5bc6e2eb41c9def29a3e0f1306382807764b9b53112030eff57435667352d" +checksum = "927609f78c2913a6f6ac3c27a4fe87f43e2a35367c0c4b0f8265e8f49a104330" dependencies = [ "hermit-abi 0.2.6", "io-lifetimes 1.0.1", - "rustix 0.36.3", + "rustix 0.36.4", "windows-sys", ] @@ -1558,9 +1558,9 @@ dependencies = [ [[package]] name = "rustix" -version = "0.36.3" +version = "0.36.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b1fbb4dfc4eb1d390c02df47760bb19a84bb80b301ecc947ab5406394d8223e" +checksum = "cb93e85278e08bb5788653183213d3a60fc242b10cb9be96586f5a73dcb67c23" dependencies = [ "bitflags", "errno", diff --git a/boa_cli/Cargo.toml b/boa_cli/Cargo.toml index 6c93267496..4ef2e66cb5 100644 --- a/boa_cli/Cargo.toml +++ b/boa_cli/Cargo.toml @@ -17,7 +17,7 @@ boa_ast = { workspace = true, features = ["serde"]} boa_parser.workspace = true rustyline = "10.0.0" rustyline-derive = "0.7.0" -clap = { version = "4.0.27", features = ["derive"] } +clap = { version = "4.0.28", features = ["derive"] } serde_json = "1.0.89" colored = "2.0.0" regex = "1.7.0" diff --git a/boa_tester/Cargo.toml b/boa_tester/Cargo.toml index 1daf833045..6bb3fb4916 100644 --- a/boa_tester/Cargo.toml +++ b/boa_tester/Cargo.toml @@ -15,7 +15,7 @@ rust-version.workspace = true boa_engine = { workspace = true, features = ["intl"] } boa_gc.workspace = true boa_parser.workspace = true -clap = { version = "4.0.27", features = ["derive"] } +clap = { version = "4.0.28", features = ["derive"] } serde = { version = "1.0.148", features = ["derive"] } serde_yaml = "0.9.14" serde_json = "1.0.89"