From 8b55e5482f6b7d325980b41edbd03d6e42c183c1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Dec 2021 19:13:02 +0000 Subject: Bump clap from 3.0.0-beta.5 to 3.0.0-rc.7 Bumps [clap](https://github.com/clap-rs/clap) from 3.0.0-beta.5 to 3.0.0-rc.7. - [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/v3.0.0-beta.5...clap_generate-v3.0.0-rc.7) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- dotup_cli/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dotup_cli/Cargo.toml') diff --git a/dotup_cli/Cargo.toml b/dotup_cli/Cargo.toml index 2dc1adb..d351336 100644 --- a/dotup_cli/Cargo.toml +++ b/dotup_cli/Cargo.toml @@ -10,7 +10,7 @@ doc = false [dependencies] anyhow = "1.0" -clap = "3.0.0-beta.5" +clap = "3.0.0-rc.7" log = "0.4" [dependencies.dotup] -- cgit From ef0889ff3f372b2a9e7d819502d6da964ead5d99 Mon Sep 17 00:00:00 2001 From: diogo464 Date: Thu, 23 Dec 2021 19:38:33 +0000 Subject: Added "derive" feature to clap --- dotup_cli/Cargo.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'dotup_cli/Cargo.toml') diff --git a/dotup_cli/Cargo.toml b/dotup_cli/Cargo.toml index d351336..f80b763 100644 --- a/dotup_cli/Cargo.toml +++ b/dotup_cli/Cargo.toml @@ -10,9 +10,12 @@ doc = false [dependencies] anyhow = "1.0" -clap = "3.0.0-rc.7" log = "0.4" +[dependencies.clap] +features = ["derive"] +version = "3.0.0-rc.7" + [dependencies.dotup] path = "../dotup" -- cgit