From 8cf206fbd2f44e895b581cc259d603d92862a454 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 12 Jul 2023 20:57:56 +0900 Subject: [PATCH] chore(deps): bump clap from 4.3.10 to 4.3.11 (#105) Bumps [clap](https://github.com/clap-rs/clap) from 4.3.10 to 4.3.11. - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.3.10...v4.3.11) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 8 ++++---- crates/stctl/Cargo.toml | 2 +- crates/stellation-backend-cli/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 759af7d..1f3aa5e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -277,9 +277,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "clap" -version = "4.3.10" +version = "4.3.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "384e169cc618c613d5e3ca6404dda77a8685a63e08660dcc64abaf7da7cb0c7a" +checksum = "1640e5cc7fb47dbb8338fd471b105e7ed6c3cb2aeb00c2e067127ffd3764a05d" dependencies = [ "clap_builder", "clap_derive", @@ -288,9 +288,9 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.3.10" +version = "4.3.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ef137bbe35aab78bdb468ccfba75a5f4d8321ae011d34063770780545176af2d" +checksum = "98c59138d527eeaf9b53f35a77fcc1fad9d883116070c63d5de1c7dc7b00c72b" dependencies = [ "anstream", "anstyle", diff --git a/crates/stctl/Cargo.toml b/crates/stctl/Cargo.toml index a61ce41..c7acdee 100644 --- a/crates/stctl/Cargo.toml +++ b/crates/stctl/Cargo.toml @@ -16,7 +16,7 @@ license = "MIT OR Apache-2.0" [dependencies] anyhow = "1.0.71" -clap = { version = "4.3.10", features = ["derive"] } +clap = { version = "4.3.11", features = ["derive"] } serde = { version = "1.0.166", features = ["derive"] } tokio = { version = "1.29.1", features = ["full"] } toml = "0.7.5" diff --git a/crates/stellation-backend-cli/Cargo.toml b/crates/stellation-backend-cli/Cargo.toml index 86b9158..2c1504c 100644 --- a/crates/stellation-backend-cli/Cargo.toml +++ b/crates/stellation-backend-cli/Cargo.toml @@ -25,7 +25,7 @@ yew = { version = "0.20", features = ["ssr"] } # Other Deps anyhow = { version = "1" } -clap = { version = "4.3.10", features = ["derive", "env"] } +clap = { version = "4.3.11", features = ["derive", "env"] } tracing = { version = "0.1.37" } tracing-subscriber = { version = "0.3.17", features = ["env-filter"] } console = "0.15.7"