From 43c5c78e7ece289b063bf1120952dd2e7e8dd888 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 21 Mar 2023 20:02:05 +0000 Subject: [PATCH] build(deps): bump clap from 4.1.9 to 4.1.11 Bumps [clap](https://github.com/clap-rs/clap) from 4.1.9 to 4.1.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.1.9...v4.1.11) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 6 +++--- crates/cli/Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e6bffeac..e09af4eb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1225,11 +1225,11 @@ dependencies = [ [[package]] name = "clap" -version = "4.1.9" +version = "4.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9a9d6ada83c1edcce028902ea27dd929069c70df4c7600b131b4d9a1ad2879cc" +checksum = "42dfd32784433290c51d92c438bb72ea5063797fc3cc9a21a8c4346bebbb2098" dependencies = [ - "bitflags 1.3.2", + "bitflags 2.0.2", "clap_derive", "clap_lex", "is-terminal", diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index 1d3110cc..1886d140 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -11,7 +11,7 @@ anyhow = "1.0.69" atty = "0.2.14" axum = "0.6.11" camino = "1.1.4" -clap = { version = "4.1.9", features = ["derive"] } +clap = { version = "4.1.11", features = ["derive"] } dotenv = "0.15.0" hyper = { version = "0.14.25", features = ["full"] } itertools = "0.10.5"