Skip to content

Commit

Permalink
apply clippy suggestions
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
boozook and github-actions[bot] authored Jun 12, 2024
1 parent 840583a commit 26c6249
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cargo/src/package/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ pub struct Product {
}


pub fn build_all<'b>(config: &'_ Config,
pub fn build_all(config: &'_ Config,
assets: AssetsArtifactsNew<'_, '_>,
products: Vec<BuildProduct<'b>>)
products: Vec<BuildProduct<'_>>)
-> CargoResult<Vec<Product>> {
let products: Vec<SuccessfulBuildProduct> = products.into_iter().flat_map(TryInto::try_into).collect();
let mut targets = HashMap::<_, Vec<_>>::new();
Expand Down

0 comments on commit 26c6249

Please sign in to comment.