Skip to content

Commit

Permalink
clean up warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
rdfriese committed Nov 2, 2023
1 parent 729b7ac commit ccb2618
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ keywords = ["hpc","runtime","pgas","distributed","asynchronous"]
categories = ["asynchronous","concurrency", "network-programming","science"]

[dependencies]
lamellar-impl = { version = "0.5.0-rc.1", path = "impl" }
lamellar-impl = { version = "0.5.0", path = "impl" }
lamellar-prof = { version = "0.1.0", path = "lamellar-prof" }
rofisys = { version ="0.2", optional = true }
inventory = "0.3" #can't use 0.2+ due to TypeId::of being non const
inventory = "0.3"
serde = { version = "1.0.147", features = ["derive"] }
serde_bytes = "0.11.7"
bincode = "1.3.3"
Expand Down
2 changes: 1 addition & 1 deletion src/array/iterator/distributed_iterator/consumer/sum.rs
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ where
I::Item: Dist + ArrayOps + std::iter::Sum,
{
async fn exec(&self) -> I::Item {
let mut iter = self.schedule.init_iter(self.iter.clone());
let iter = self.schedule.init_iter(self.iter.clone());
iter.sum::<I::Item>()
}
}

0 comments on commit ccb2618

Please sign in to comment.