From b562ce4d63451aceb5cd31ac7fdb55cc07df0db3 Mon Sep 17 00:00:00 2001 From: Pavan Kumar Sunkara Date: Sun, 3 May 2020 11:48:01 +0200 Subject: [PATCH] Some modifications to allow cargo verification to work --- Cargo.toml | 6 ++++++ clap_derive/Cargo.toml | 2 +- clap_generate/Cargo.toml | 1 - 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 016a7a47..69e35358 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,26 +32,32 @@ bench = false [[bench]] harness = false name = "01_default" +path = "benches/01_default.rs" [[bench]] harness = false name = "02_simple" +path = "benches/02_simple.rs" [[bench]] harness = false name = "03_complex" +path = "benches/03_complex.rs" [[bench]] harness = false name = "04_new_help" +path = "benches/04_new_help.rs" [[bench]] harness = false name = "05_ripgrep" +path = "benches/05_ripgrep.rs" [[bench]] harness = false name = "06_rustup" +path = "benches/06_rustup.rs" [badges] is-it-maintained-issue-resolution = { repository = "clap-rs/clap" } diff --git a/clap_derive/Cargo.toml b/clap_derive/Cargo.toml index a5498a1d..ede7a3ef 100644 --- a/clap_derive/Cargo.toml +++ b/clap_derive/Cargo.toml @@ -43,7 +43,7 @@ heck = "0.3.0" proc-macro-error = "0.4.9" [dev-dependencies] -clap = { path = "../", version = "3.0.0-beta.1" } +clap = { path = "../" } trybuild = "1.0" rustversion = "1" version-sync = "0.8" diff --git a/clap_generate/Cargo.toml b/clap_generate/Cargo.toml index b4104837..3e19d38a 100644 --- a/clap_generate/Cargo.toml +++ b/clap_generate/Cargo.toml @@ -21,7 +21,6 @@ keywords = [ "generate", "completion", "manpage", - "parse" ] categories = ["command-line-interface"] license = "MIT OR Apache-2.0"