From 805e2a34046648235c2873458bd08f2f18062959 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 25 Aug 2023 14:16:39 +0000 Subject: [PATCH] Update clap requirement from 3.1 to 4.4 Updates the requirements on [clap](https://github.com/clap-rs/clap) to permit the latest version. - [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/clap_complete-v3.1.0...clap_complete-v4.4.0) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- ctl/Cargo.toml | 2 +- stress/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ctl/Cargo.toml b/ctl/Cargo.toml index c10b092e..e0943f28 100644 --- a/ctl/Cargo.toml +++ b/ctl/Cargo.toml @@ -9,6 +9,6 @@ repository = "https://github.com/tikv/raft-engine" license = "Apache-2.0" [dependencies] -clap = { version = "3.1", features = ["derive", "cargo"] } +clap = { version = "4.4", features = ["derive", "cargo"] } env_logger = "0.10" raft-engine = { path = "..", version = "0.3.0", features = ["scripting", "internals"] } diff --git a/stress/Cargo.toml b/stress/Cargo.toml index e89c92a5..e3834f2d 100644 --- a/stress/Cargo.toml +++ b/stress/Cargo.toml @@ -5,7 +5,7 @@ authors = ["The TiKV Authors"] edition = "2018" [dependencies] -clap = { version = "3.1", features = ["derive", "cargo"] } +clap = { version = "4.4", features = ["derive", "cargo"] } const_format = "0.2.13" hdrhistogram = "7.4" num-traits = "0.2"