From 2196f1a313186cfedb1f384f1c0c4ab4e6157018 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 28 Sep 2022 17:47:34 +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...clap_complete-v4.0.0) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 7988ffe..59d7d77 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ version = "0.4.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -clap = { version = "3", default-features = false, features = ["std", "derive", "env"] } +clap = { version = "4", default-features = false, features = ["std", "derive", "env"] } futures = { version = "0.3", default-features = false, features = [] } if-addrs = "0.7.0" influxdb = { version = "0.5", default-features = false, features = ["reqwest", "serde", "serde_json", "derive"] }