Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
mina86 committed Aug 25, 2024
1 parent 6047cbc commit bb13499
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/lib/src/par.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#[cfg(all(feature = "rayon", not(miri)))]
use rayon::prelude::{ParallelSlice, ParallelSliceMut};
use rayon::prelude::{ParallelIterator, ParallelSlice, ParallelSliceMut};

Check failure on line 2 in common/lib/src/par.rs

View workflow job for this annotation

GitHub Actions / clippy

unused import: `ParallelIterator`

error: unused import: `ParallelIterator` --> common/lib/src/par.rs:2:22 | 2 | use rayon::prelude::{ParallelIterator, ParallelSlice, ParallelSliceMut}; | ^^^^^^^^^^^^^^^^ | = note: `-D unused-imports` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(unused_imports)]`

pub mod prelude {
#[cfg(all(feature = "rayon", not(miri)))]
Expand Down

0 comments on commit bb13499

Please sign in to comment.