Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
OsamaAlkhodairy committed Dec 20, 2024
1 parent a08c2e2 commit b299ada
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 7 deletions.
1 change: 0 additions & 1 deletion fri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ itertools.workspace = true
rand.workspace = true
tracing.workspace = true
serde = { workspace = true, features = ["derive", "alloc"] }
tracing-subscriber.workspace = true

[dev-dependencies]
p3-baby-bear.workspace = true
Expand Down
6 changes: 2 additions & 4 deletions fri/src/prover.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,8 @@ use p3_challenger::{CanObserve, FieldChallenger, GrindingChallenger};
use p3_commit::Mmcs;
use p3_dft::{Radix2Dit, TwoAdicSubgroupDft};
use p3_field::{ExtensionField, Field, TwoAdicField};
use p3_matrix::{
dense::{DenseMatrix, RowMajorMatrix},
Matrix,
};
use p3_matrix::dense::{DenseMatrix, RowMajorMatrix};
use p3_matrix::Matrix;
use p3_util::{log2_strict_usize, reverse_slice_index_bits};
use tracing::{debug, debug_span, info_span, instrument};

Expand Down
3 changes: 2 additions & 1 deletion fri/src/verifier.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ use itertools::{izip, Itertools};
use p3_challenger::{CanObserve, FieldChallenger, GrindingChallenger};
use p3_commit::Mmcs;
use p3_field::{ExtensionField, Field, TwoAdicField};
use p3_matrix::{dense::RowMajorMatrix, Dimensions, Matrix};
use p3_matrix::dense::RowMajorMatrix;
use p3_matrix::{Dimensions, Matrix};
use p3_util::reverse_bits_len;
use tracing::debug;

Expand Down
1 change: 0 additions & 1 deletion merkle-tree/src/mmcs.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
use alloc::vec::Vec;
use core::cmp::Reverse;
use core::marker::PhantomData;
use tracing::debug;

use itertools::Itertools;
use p3_commit::Mmcs;
Expand Down

0 comments on commit b299ada

Please sign in to comment.