From 3e46eef6feaf4b0da9d4276ba1bf2f1ad7e5f613 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 28 Nov 2022 15:38:10 +0000 Subject: [PATCH] build(deps): update clap requirement from 3 to 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.0.0...v4.0.8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- aya-tool/Cargo.toml | 2 +- test/integration-test/Cargo.toml | 2 +- xtask/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/aya-tool/Cargo.toml b/aya-tool/Cargo.toml index 80f2d6a0..f1378e6f 100644 --- a/aya-tool/Cargo.toml +++ b/aya-tool/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" [dependencies] bindgen = "0.63" -clap = { version = "3", features = ["derive"] } +clap = { version = "4", features = ["derive"] } anyhow = "1" thiserror = "1" tempfile = "3" diff --git a/test/integration-test/Cargo.toml b/test/integration-test/Cargo.toml index f365aac0..94c05cf1 100644 --- a/test/integration-test/Cargo.toml +++ b/test/integration-test/Cargo.toml @@ -7,7 +7,7 @@ publish = false [dependencies] anyhow = "1" aya = { path = "../../aya" } -clap = { version = "3", features = ["derive"] } +clap = { version = "4", features = ["derive"] } env_logger = "0.10" inventory = "0.2" integration-test-macros = { path = "../integration-test-macros" } diff --git a/xtask/Cargo.toml b/xtask/Cargo.toml index c241fe1d..f20827f6 100644 --- a/xtask/Cargo.toml +++ b/xtask/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" [dependencies] aya-tool = { path = "../aya-tool" } -clap = { version = "3", features = ["derive"] } +clap = { version = "4", features = ["derive"] } anyhow = "1" syn = "1" quote = "1"