From ec85d7c498f4625fde5f959d6209f2d642647a2a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Jan 2023 13:07:53 +0000 Subject: [PATCH] Update clap requirement from 3.2 to 4.1 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.2.0...v4.1.1) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- eva-cli/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eva-cli/Cargo.toml b/eva-cli/Cargo.toml index 67f919b..ad5c5ea 100644 --- a/eva-cli/Cargo.toml +++ b/eva-cli/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] anyhow = "1.0" chrono = "0.4" -clap = { version = "3.2", features = ["wrap_help"] } +clap = { version = "4.1", features = ["wrap_help"] } config = { version = "0.13", default-features = false, features = ["toml"] } directories = "4.0" eva = { version = "0.0.1", path = "../", features = ["sqlite"] }