Skip to content

Commit

Permalink
fix: rayon imports
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-camuto committed Jul 3, 2024
1 parent 4b1ac89 commit 13e0333
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion halo2_proofs/src/poly.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use crate::plonk::Assigned;
use crate::SerdeFormat;
use group::ff::{BatchInvert, Field};
#[cfg(feature = "parallel-poly-read")]
use maybe_rayon::{iter::ParallelIterator, prelude::ParallelSliceMut};
use maybe_rayon::{iter::ParallelIterator, prelude::ParallelSlice};
use std::fmt::Debug;
use std::io;
use std::marker::PhantomData;
Expand Down

0 comments on commit 13e0333

Please sign in to comment.