From fec6cc9923d5c8351a86167c1ba4258a54bbfee1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 24 Sep 2024 14:22:12 +0000 Subject: [PATCH] build(deps): Bump clap from 4.5.4 to 4.5.13 in /rust (#6800) Bumps [clap](https://github.com/clap-rs/clap) from 4.5.4 to 4.5.13.
Release notes

Sourced from clap's releases.

v4.5.13

[4.5.13] - 2024-07-31

Fixes

v4.5.12

[4.5.12] - 2024-07-31

v4.5.10

[4.5.10] - 2024-07-23

v4.5.9

[4.5.9] - 2024-07-09

Fixes

v4.5.8

[4.5.8] - 2024-06-28

Fixes

v4.5.7

[4.5.7] - 2024-06-10

Fixes

v4.5.6

[4.5.6] - 2024-06-06

Changelog

Sourced from clap's changelog.

[4.5.13] - 2024-07-31

Fixes

[4.5.12] - 2024-07-31

[4.5.11] - 2024-07-25

[4.5.10] - 2024-07-23

[4.5.9] - 2024-07-09

Fixes

[4.5.8] - 2024-06-28

Fixes

[4.5.7] - 2024-06-10

Fixes

[4.5.6] - 2024-06-06

[4.5.5] - 2024-06-06

Fixes

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=clap&package-manager=cargo&previous-version=4.5.4&new-version=4.5.13)](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> Co-authored-by: Reactor Scram --- rust/Cargo.lock | 12 ++++++------ rust/bin-shared/Cargo.toml | 2 +- rust/gateway/Cargo.toml | 2 +- rust/relay/Cargo.toml | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/rust/Cargo.lock b/rust/Cargo.lock index 386010859..3de341941 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -1031,9 +1031,9 @@ dependencies = [ [[package]] name = "clap" -version = "4.5.4" +version = "4.5.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "90bc066a67923782aa8515dbaea16946c5bcc5addbd668bb80af688e53e548a0" +checksum = "0fbb260a053428790f3de475e304ff84cdbc4face759ea7a3e64c1edd938a7fc" dependencies = [ "clap_builder", "clap_derive", @@ -1041,9 +1041,9 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.5.2" +version = "4.5.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ae129e2e766ae0ec03484e609954119f123cc1fe650337e155d03b022f24f7b4" +checksum = "64b17d7ea74e9f833c7dbf2cbe4fb12ff26783eda4782a8975b72f895c9b4d99" dependencies = [ "anstream", "anstyle", @@ -1054,9 +1054,9 @@ dependencies = [ [[package]] name = "clap_derive" -version = "4.5.4" +version = "4.5.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "528131438037fd55894f62d6e9f068b8f45ac57ffa77517819645d10aed04f64" +checksum = "501d359d5f3dcaf6ecdeee48833ae73ec6e42723a1e52419c79abf9507eec0a0" dependencies = [ "heck 0.5.0", "proc-macro2", diff --git a/rust/bin-shared/Cargo.toml b/rust/bin-shared/Cargo.toml index 3f2230d15..97bca01b7 100644 --- a/rust/bin-shared/Cargo.toml +++ b/rust/bin-shared/Cargo.toml @@ -8,7 +8,7 @@ description = "Firezone-specific modules shared between binaries." [dependencies] anyhow = "1.0.82" axum = { version = "0.7.5", default-features = false, features = ["http1", "tokio"] } -clap = { version = "4.5.4", features = ["derive", "env"] } +clap = { version = "4.5.13", features = ["derive", "env"] } futures = "0.3" git-version = "0.3.9" ip_network = { version = "0.4", default-features = false, features = ["serde"] } diff --git a/rust/gateway/Cargo.toml b/rust/gateway/Cargo.toml index 44312d7e5..579385102 100644 --- a/rust/gateway/Cargo.toml +++ b/rust/gateway/Cargo.toml @@ -11,7 +11,7 @@ async-trait = { version = "0.1", default-features = false } backoff = { workspace = true } boringtun = { workspace = true } chrono = { workspace = true } -clap = "4.5.4" +clap = "4.5.13" connlib-shared = { workspace = true } dns-lookup = { workspace = true } domain = { workspace = true } diff --git a/rust/relay/Cargo.toml b/rust/relay/Cargo.toml index 37fb8dd97..fecccdc02 100644 --- a/rust/relay/Cargo.toml +++ b/rust/relay/Cargo.toml @@ -9,7 +9,7 @@ backoff = "0.4" base64 = "0.22.1" bytecodec = "0.4.15" bytes = "1.7.1" -clap = { version = "4.5.4", features = ["derive", "env"] } +clap = { version = "4.5.13", features = ["derive", "env"] } derive_more = { version = "0.99.18", features = ["from"] } firezone-bin-shared = { workspace = true } futures = "0.3.29"