dep: Upgrade transitive dependencies (#2214)

* dep: Upgrade transitive dependencies

* Fix clippy in entry.rs

For rust 1.88


Signed-off-by: Jiahao XU <30436523+NobodyXu@users.noreply.github.com>

---------

Signed-off-by: Jiahao XU <30436523+NobodyXu@users.noreply.github.com>
Co-authored-by: github-actions <github-actions@github.com>
Co-authored-by: Jiahao XU <30436523+NobodyXu@users.noreply.github.com>
This commit is contained in:
github-actions[bot] 2025-06-28 09:59:10 +00:00 committed by GitHub
parent 8aac5aa2bf
commit 4cc45676bd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 20 additions and 19 deletions

View file

@ -257,7 +257,7 @@ pub fn install_crates(
resolution_sources.push(source)
}
Err(BinstallError::CrateContext(err)) => errors.push(err),
Err(e) => panic!("Expected BinstallError::CrateContext(_), got {}", e),
Err(e) => panic!("Expected BinstallError::CrateContext(_), got {e}"),
}
}
@ -300,7 +300,7 @@ pub fn install_crates(
match task.flattened_join().await {
Ok(_) => (),
Err(BinstallError::CrateContext(err)) => errors.push(err),
Err(e) => panic!("Expected BinstallError::CrateContext(_), got {}", e),
Err(e) => panic!("Expected BinstallError::CrateContext(_), got {e}"),
}
}
@ -581,7 +581,7 @@ fn do_install_fetches_continue_on_failure(
errors.push(err);
None
}
Err(e) => panic!("Expected BinstallError::CrateContext(_), got {}", e),
Err(e) => panic!("Expected BinstallError::CrateContext(_), got {e}"),
})
.collect::<Vec<_>>();