From f7a731fda7c6ee96f63027b67b5cbba945c3dbf3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 29 Sep 2022 13:41:05 +0000 Subject: [PATCH] build(deps): update clap requirement from 3.0 to 4.0 in /debugger 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.0.0...v4.0.2) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- debugger/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debugger/Cargo.toml b/debugger/Cargo.toml index e8e806410c..e23167501e 100644 --- a/debugger/Cargo.toml +++ b/debugger/Cargo.toml @@ -26,7 +26,7 @@ probe-rs-cli-util = { version = "0.13.0", path = "../probe-rs-cli-util" } env_logger = "0.9.0" log = "0.4.6" scroll = "0.11.0" -clap = { version = "3.0", features = ["derive", "cargo"] } +clap = { version = "4.0", features = ["derive", "cargo"] } capstone = "0.11.0" thiserror = "1.0" anyhow = "1.0.34"