From f1e5a4ee01f01f9c2568de62289483e790041701 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 9 Feb 2024 14:47:39 +0000 Subject: [PATCH] Update clap requirement from 3.1 to 4.5 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.5.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 5bf23c8b..674b46dc 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.5", features = ["derive", "cargo"] } env_logger = "0.10" raft-engine = { path = "..", version = "0.4.1", features = ["scripting", "internals"] } diff --git a/stress/Cargo.toml b/stress/Cargo.toml index 79d131e2..482a3986 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.5", features = ["derive", "cargo"] } const_format = "0.2.13" hdrhistogram = "7.4" num-traits = "0.2"