Update Cargo.lock

This commit is contained in:
Lukas Wirth 2024-03-05 12:00:21 +01:00
parent 8844640c6f
commit 00a6cc0664
13 changed files with 333 additions and 341 deletions

View file

@ -595,7 +595,7 @@ impl ActiveQuery {
fn remove_cycle_participants(&mut self, cycle: &Cycle) {
if let Some(my_dependencies) = &mut self.dependencies {
for p in cycle.participant_keys() {
my_dependencies.remove(&p);
my_dependencies.swap_remove(&p);
}
}
}