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 9444c9b commit 6595c6fCopy full SHA for 6595c6f
1 file changed
src/main.rs
@@ -338,7 +338,7 @@ fn determine_package_list(cx: &Context) -> Result<Vec<PackageRuns<'_>>> {
338
}
339
340
let has_required_features = |id: &&PackageId| {
341
- 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))
342
};
343
Ok(if cx.workspace {
344
let ids: Vec<_> = cx
0 commit comments