Skip to content

Commit

Permalink
Revert "Fix for #13121: use exact query well populating features"
Browse files Browse the repository at this point in the history
This reverts commit 91ce3ee.
  • Loading branch information
stupendoussuperpowers committed Dec 28, 2023
1 parent 91ce3ee commit e72e7df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cargo/ops/cargo_add/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -934,7 +934,7 @@ fn populate_available_features(
}

let possibilities = loop {
match registry.query_vec(&query, QueryKind::Exact) {
match registry.query_vec(&query, QueryKind::Fuzzy) {
std::task::Poll::Ready(res) => {
break res?;
}
Expand Down

0 comments on commit e72e7df

Please sign in to comment.