Skip to content

Commit

Permalink
Display feature-relarted cli args together in help
Browse files Browse the repository at this point in the history
  • Loading branch information
cmyr committed Aug 22, 2021
1 parent d43883b commit 5a3fda0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/opt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,11 @@ pub(crate) struct AppConfig {
pub(crate) features: Option<String>,

/// Activate all features for the selected target.
#[structopt(long)]
#[structopt(long, display_order = 1001)]
pub(crate) all_features: bool,

/// Do not activate the default features for the selected target
#[structopt(long)]
#[structopt(long, display_order = 1001)]
pub(crate) no_default_features: bool,

/// Arguments passed to the target binary.
Expand Down

0 comments on commit 5a3fda0

Please sign in to comment.