-
-
Notifications
You must be signed in to change notification settings - Fork 39
Exclude certain combinations from powerset #280
Copy link
Copy link
Open
Labels
A-featuresArea: features (--feature-powerset, --each-feature, etc.)Area: features (--feature-powerset, --each-feature, etc.)C-enhancementCategory: A new feature or an improvement for an existing oneCategory: A new feature or an improvement for an existing one
Metadata
Metadata
Assignees
Labels
A-featuresArea: features (--feature-powerset, --each-feature, etc.)Area: features (--feature-powerset, --each-feature, etc.)C-enhancementCategory: A new feature or an improvement for an existing oneCategory: A new feature or an improvement for an existing one
Is it possible to use cargo-hack to iterate over a feature powerset, but explicitly still skip certain combinations? For example, if my crate has the independent features:
a,b,cMy understanding is
--feature-powersetwill run with the following combinations:abca,ba,cb,ca,b,cIs there a way to tell
cargo-hackto ignore a certain combinations here? For example, lets say I knowa+chas some problems right now, can i tellcargo-hackto exclude that specific combination?