mirror of
https://github.com/cargo-bins/cargo-binstall.git
synced 2025-06-29 22:16:37 +00:00
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:
parent
8aac5aa2bf
commit
4cc45676bd
2 changed files with 20 additions and 19 deletions
|
@ -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<_>>();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue