From 510714ddcd606bff9ffdc6b703e375964a462e75 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Thu, 7 Mar 2024 15:39:39 +1100
Subject: [PATCH] build(deps): Bump clap from 4.5.1 to 4.5.2 in /rust (#4009)
Bumps [clap](https://github.com/clap-rs/clap) from 4.5.1 to 4.5.2.
Release notes
Sourced from clap's
releases.
v4.5.2
[4.5.2] - 2024-03-06
Fixes
- (macros) Silence a warning
Changelog
Sourced from clap's
changelog.
[4.5.2] - 2024-03-06
Fixes
- (macros) Silence a warning
Commits
f65d421
chore: Release
886b272
docs: Update changelog
3ba4297
Merge pull request #5386
from amaanq/static-var-name
2aea950
fix: Use SCREAMING_SNAKE_CASE for static variable
authors
690f555
Merge pull request #5382
from clap-rs/renovate/pre-commit-action-3.x
a2aa644
chore(deps): update compatible (dev) (#5381)
c233de5
chore(deps): update pre-commit/action action to v3.0.1
d0028d7
Merge pull request #5371
from BenWiederhake/dev-fix-link-command-trailing_var...
0076cac
fix(builder): Don't doc-link to undocumented item
- See full diff in compare
view
[](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 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)
Signed-off-by: dependabot[bot]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
---
rust/Cargo.lock | 8 ++++----
rust/firezone-cli-utils/Cargo.toml | 2 +-
rust/gateway/Cargo.toml | 2 +-
rust/gui-client/src-tauri/Cargo.toml | 2 +-
rust/linux-client/Cargo.toml | 2 +-
rust/relay/Cargo.toml | 2 +-
6 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/rust/Cargo.lock b/rust/Cargo.lock
index 607d93b7b..33c960c9e 100644
--- a/rust/Cargo.lock
+++ b/rust/Cargo.lock
@@ -938,9 +938,9 @@ dependencies = [
[[package]]
name = "clap"
-version = "4.5.1"
+version = "4.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c918d541ef2913577a0f9566e9ce27cb35b6df072075769e0b26cb5a554520da"
+checksum = "b230ab84b0ffdf890d5a10abdbc8b83ae1c4918275daea1ab8801f71536b2651"
dependencies = [
"clap_builder",
"clap_derive",
@@ -948,9 +948,9 @@ dependencies = [
[[package]]
name = "clap_builder"
-version = "4.5.1"
+version = "4.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9f3e7391dad68afb0c2ede1bf619f579a3dc9c2ec67f089baa397123a2f3d1eb"
+checksum = "ae129e2e766ae0ec03484e609954119f123cc1fe650337e155d03b022f24f7b4"
dependencies = [
"anstream",
"anstyle",
diff --git a/rust/firezone-cli-utils/Cargo.toml b/rust/firezone-cli-utils/Cargo.toml
index 623e9d2d0..1317b8fef 100644
--- a/rust/firezone-cli-utils/Cargo.toml
+++ b/rust/firezone-cli-utils/Cargo.toml
@@ -12,5 +12,5 @@ url = { version = "2.3.1", default-features = false }
tracing-subscriber = { workspace = true, features = ["env-filter"] }
tracing = { workspace = true }
tracing-log = "0.2"
-clap = { version = "4.4", features = ["derive", "env"] }
+clap = { version = "4.5", features = ["derive", "env"] }
ctrlc = "3.4"
diff --git a/rust/gateway/Cargo.toml b/rust/gateway/Cargo.toml
index 8ec8ce7a8..25f975145 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.18"
+clap = "4.5.2"
connlib-shared = { workspace = true }
firezone-tunnel = { workspace = true }
futures = "0.3.29"
diff --git a/rust/gui-client/src-tauri/Cargo.toml b/rust/gui-client/src-tauri/Cargo.toml
index 3876cbd3f..2e7899365 100644
--- a/rust/gui-client/src-tauri/Cargo.toml
+++ b/rust/gui-client/src-tauri/Cargo.toml
@@ -14,7 +14,7 @@ arboard = { version = "3.3.2", default-features = false }
anyhow = { version = "1.0" }
arc-swap = "1.7.0"
chrono = { workspace = true }
-clap = { version = "4.4", features = ["derive", "env"] }
+clap = { version = "4.5", features = ["derive", "env"] }
connlib-client-shared = { workspace = true }
connlib-shared = { workspace = true }
crash-handler = "0.6.1"
diff --git a/rust/linux-client/Cargo.toml b/rust/linux-client/Cargo.toml
index 3628c4de3..eac0095b5 100644
--- a/rust/linux-client/Cargo.toml
+++ b/rust/linux-client/Cargo.toml
@@ -15,7 +15,7 @@ connlib-shared = { workspace = true }
firezone-cli-utils = { workspace = true }
anyhow = { version = "1.0" }
tracing = { workspace = true }
-clap = { version = "4.4", features = ["derive", "env"] }
+clap = { version = "4.5", features = ["derive", "env"] }
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
humantime = "2.1"
resolv-conf = "0.7.0"
diff --git a/rust/relay/Cargo.toml b/rust/relay/Cargo.toml
index 1a0f54c31..b749486fd 100644
--- a/rust/relay/Cargo.toml
+++ b/rust/relay/Cargo.toml
@@ -7,7 +7,7 @@ edition = "2021"
[dependencies]
secrecy = { workspace = true }
anyhow = "1.0.80"
-clap = { version = "4.4.18", features = ["derive", "env"] }
+clap = { version = "4.5.2", features = ["derive", "env"] }
bytecodec = "0.4.15"
futures = "0.3.29"
hex = "0.4.3"