bheisler / criterion.rs

Statistics-driven benchmarking library for Rust
Apache License 2.0
4.28k stars 290 forks source link

Do not redundantly import `std::iter::IntoIterator` #767

Closed samueltardieu closed 3 months ago

samueltardieu commented 3 months ago

Rust now warns about duplicate imports. std::iter::IntoIterator is part of the Rust prelude since Rust 2015. This prevents criterion-plot from compiling with recent Rust versions because of #![deny(warnings)].

samueltardieu commented 3 months ago

CI failure is unrelated (clap MSRV). It will be fixed by #768.

samueltardieu commented 3 months ago

Merged and superseded by #768.