From 0d1df924dc534a3c0f05282ade8252f8fc71b2ec Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 3 Nov 2023 14:52:22 -0300 Subject: [PATCH] build(deps): Bump clap from 4.4.6 to 4.4.7 in /rust (#2525) Bumps [clap](https://github.com/clap-rs/clap) from 4.4.6 to 4.4.7.
Changelog

Sourced from clap's changelog.

[4.4.7] - 2023-10-24

Performance

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=clap&package-manager=cargo&previous-version=4.4.6&new-version=4.4.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 show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- rust/Cargo.lock | 16 ++++++++-------- rust/firezone-cli-utils/Cargo.toml | 2 +- rust/gateway/Cargo.toml | 2 +- rust/relay/Cargo.toml | 2 +- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/rust/Cargo.lock b/rust/Cargo.lock index fd808eec5..5af35cba3 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -594,9 +594,9 @@ dependencies = [ [[package]] name = "clap" -version = "4.4.6" +version = "4.4.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d04704f56c2cde07f43e8e2c154b43f216dc5c92fc98ada720177362f953b956" +checksum = "ac495e00dcec98c83465d5ad66c5c4fabd652fd6686e7c6269b117e729a6f17b" dependencies = [ "clap_builder", "clap_derive", @@ -604,9 +604,9 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.4.6" +version = "4.4.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0e231faeaca65ebd1ea3c737966bf858971cd38c3849107aa3ea7de90a804e45" +checksum = "c77ed9a32a62e6ca27175d00d29d05ca32e396ea1eb5fb01d8256b669cec7663" dependencies = [ "anstream", "anstyle", @@ -616,9 +616,9 @@ dependencies = [ [[package]] name = "clap_derive" -version = "4.4.2" +version = "4.4.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0862016ff20d69b84ef8247369fabf5c008a7417002411897d40ee1f4532b873" +checksum = "cf9804afaaf59a91e75b022a30fb7229a7901f60c755489cc61c9b423b836442" dependencies = [ "heck", "proc-macro2", @@ -628,9 +628,9 @@ dependencies = [ [[package]] name = "clap_lex" -version = "0.5.1" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd7cc57abe963c6d3b9d8be5b06ba7c8957a930305ca90304f24ef040aa6f961" +checksum = "702fc72eb24e5a1e48ce58027a675bc24edd52096d5397d4aea7c6dd9eca0bd1" [[package]] name = "colorchoice" diff --git a/rust/firezone-cli-utils/Cargo.toml b/rust/firezone-cli-utils/Cargo.toml index 12fb30a40..9cfeba58d 100644 --- a/rust/firezone-cli-utils/Cargo.toml +++ b/rust/firezone-cli-utils/Cargo.toml @@ -11,5 +11,5 @@ ip_network = "0.4" url = { version = "2.3.1", default-features = false } tracing-subscriber = { workspace = true, features = ["env-filter"] } tracing = { workspace = true } -clap = { version = "4.3", features = ["derive", "env"] } +clap = { version = "4.4", features = ["derive", "env"] } ctrlc = "3.4" diff --git a/rust/gateway/Cargo.toml b/rust/gateway/Cargo.toml index 0fc94f1f6..99e612b9d 100644 --- a/rust/gateway/Cargo.toml +++ b/rust/gateway/Cargo.toml @@ -12,7 +12,7 @@ async-trait = { version = "0.1", default-features = false } backoff = { workspace = true } boringtun = { workspace = true } chrono = { workspace = true } -clap = "4.4.5" +clap = "4.4.7" connlib-shared = { workspace = true } firezone-tunnel = { workspace = true } futures = "0.3.29" diff --git a/rust/relay/Cargo.toml b/rust/relay/Cargo.toml index 03d3794ad..358ca8905 100644 --- a/rust/relay/Cargo.toml +++ b/rust/relay/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" [dependencies] secrecy = { workspace = true } anyhow = "1.0.75" -clap = { version = "4.4.4", features = ["derive", "env"] } +clap = { version = "4.4.7", features = ["derive", "env"] } bytecodec = "0.4.15" futures = "0.3.29" hex = "0.4.3"