From 286d8b721265b596acaaa0f5166dc272f54d0e0e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 15 Jan 2023 06:38:20 +0000 Subject: [PATCH] chore(deps): bump clap from 4.0.32 to 4.1.1 Bumps [clap](https://github.com/clap-rs/clap) from 4.0.32 to 4.1.1. - [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.0.32...v4.1.1) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 8 ++++---- crates/stackable-backend/Cargo.toml | 2 +- crates/stackable-cli/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3805bff..61227da 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -186,9 +186,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "clap" -version = "4.0.32" +version = "4.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a7db700bc935f9e43e88d00b0850dae18a63773cfbec6d8e070fccf7fef89a39" +checksum = "4ec7a4128863c188deefe750ac1d1dfe66c236909f845af04beed823638dc1b2" dependencies = [ "bitflags", "clap_derive", @@ -201,9 +201,9 @@ dependencies = [ [[package]] name = "clap_derive" -version = "4.0.21" +version = "4.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0177313f9f02afc995627906bbd8967e2be069f5261954222dac78290c2b9014" +checksum = "684a277d672e91966334af371f1a7b5833f9aa00b07c84e92fbce95e00208ce8" dependencies = [ "heck", "proc-macro-error", diff --git a/crates/stackable-backend/Cargo.toml b/crates/stackable-backend/Cargo.toml index 78cd83c..61827f1 100644 --- a/crates/stackable-backend/Cargo.toml +++ b/crates/stackable-backend/Cargo.toml @@ -38,7 +38,7 @@ rust-embed = { version = "6.4.2", optional = true } # Command Line Tools anyhow = { version = "1", optional = true } -clap = { version = "4.0.32", features = ["derive", "env"], optional = true } +clap = { version = "4.1.1", features = ["derive", "env"], optional = true } serde_json = "1.0.91" tracing = { version = "0.1.37" } tracing-subscriber = { version = "0.3.16", features = ["env-filter"] } diff --git a/crates/stackable-cli/Cargo.toml b/crates/stackable-cli/Cargo.toml index 775bb8f..496641d 100644 --- a/crates/stackable-cli/Cargo.toml +++ b/crates/stackable-cli/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" [dependencies] anyhow = "1.0.68" -clap = { version = "4.0.32", features = ["derive"] } +clap = { version = "4.1.1", features = ["derive"] } serde = { version = "1.0.152", features = ["derive"] } tokio = { version = "1.24.1", features = ["full"] } toml = "0.5.10"