From d981191e5d4b5aca9a09930a4f0d0822bf3e42fb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 3 Jan 2022 04:14:31 +0000 Subject: [PATCH] Update clap requirement from 2.32 to 3.0 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_generate-v3.0.0-rc.0...clap_complete-v3.0.0) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- acmed/Cargo.toml | 2 +- tacd/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/acmed/Cargo.toml b/acmed/Cargo.toml index 289a395..f0b55a2 100644 --- a/acmed/Cargo.toml +++ b/acmed/Cargo.toml @@ -23,7 +23,7 @@ openssl_vendored = ["crypto_openssl", "acme_common/openssl_vendored", "attohttpc acme_common = { path = "../acme_common" } attohttpc = { version = "0.18", default-features = false, features = ["charsets", "json"] } bincode = "1.3" -clap = "2.32" +clap = "3.0" glob = "0.3" log = "0.4" nom = { version = "7.0", default-features = false, features = [] } diff --git a/tacd/Cargo.toml b/tacd/Cargo.toml index 1a28896..0d0cad7 100644 --- a/tacd/Cargo.toml +++ b/tacd/Cargo.toml @@ -20,6 +20,6 @@ openssl_vendored = ["crypto_openssl", "acme_common/openssl_vendored"] [dependencies] acme_common = { path = "../acme_common" } -clap = "2.32" +clap = "3.0" log = "0.4" openssl = "0.10"