From 4c32e5c5b980bcbd12958edbca62cb286015bc7e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 2 Sep 2022 19:52:22 +0000 Subject: [PATCH] Bump clap from 3.2.18 to 3.2.20 Bumps [clap](https://github.com/clap-rs/clap) from 3.2.18 to 3.2.20. - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/v3.2.20/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v3.2.18...v3.2.20) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- crates/cli/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8f67390ce..fc27ccbc8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -843,9 +843,9 @@ dependencies = [ [[package]] name = "clap" -version = "3.2.18" +version = "3.2.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b15f2ea93df33549dbe2e8eecd1ca55269d63ae0b3ba1f55db030817d1c2867f" +checksum = "23b71c3ce99b7611011217b366d923f1d0a7e07a92bb2dbf1e84508c673ca3bd" dependencies = [ "atty", "bitflags", diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index e45c8bdda..1aaa08721 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -9,7 +9,7 @@ license = "Apache-2.0" tokio = { version = "1.20.1", features = ["full"] } futures = "0.3.24" anyhow = "1.0.62" -clap = { version = "3.2.18", features = ["derive"] } +clap = { version = "3.2.20", features = ["derive"] } dotenv = "0.15.0" schemars = { version = "0.8.10", features = ["url", "chrono"] } tower = { version = "0.4.13", features = ["full"] }