From a8d0cc7e3234d51c08d4742ac5a4c9942d8da639 Mon Sep 17 00:00:00 2001 From: Ralph Ursprung Date: Sun, 22 Jan 2023 13:49:56 +0100 Subject: [PATCH] fix description of arguments the help text description of the two arguments `--all-features` and `--no-default-features` seem to have been mixed up. --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index ade0c20..c633e3c 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -244,10 +244,10 @@ To see all the flags the proxied tool accepts run `cargo-{} -- --help`.{}", .help("Space-separated list of features to activate"), Arg::with_name("all-features") .long("all-features") - .help("Do not activate the `default` feature"), + .help("Activate all available features"), Arg::with_name("no-default-features") .long("no-default-features") - .help("Activate all available features"), + .help("Do not activate the `default` feature"), Arg::with_name("target") .long("target") .takes_value(true)