We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6335ad9 commit 717b926Copy full SHA for 717b926
1 file changed
src/main.rs
@@ -345,7 +345,7 @@ fn determine_package_list(cx: &Context) -> Result<Vec<PackageRuns<'_>>> {
345
}
346
347
let has_required_features = |id: &&PackageId| {
348
- cx.must_have_and_exclude_feature.as_ref().is_none_or(|s| cx.pkg_features(id).contains(s))
+ !cx.must_have_and_exclude_feature.as_ref().is_some_and(|s| !cx.pkg_features(id).contains(s))
349
};
350
Ok(if cx.workspace {
351
let ids: Vec<_> = cx
0 commit comments