Skip to content

Commit 1d05091

Browse files
committed
Add -F alias for --features
Cargo also does this in nightly channel: rust-lang/cargo#10576
1 parent 2842c1f commit 1d05091

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/build_options.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ pub struct CargoOptions {
5858
pub profile: Option<String>,
5959

6060
/// Space or comma separated list of features to activate
61-
#[clap(long, multiple_occurrences = true)]
61+
#[clap(short = 'F', long, multiple_occurrences = true)]
6262
pub features: Vec<String>,
6363

6464
/// Activate all available features

0 commit comments

Comments
 (0)