Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
darth-cy committed Nov 28, 2024
1 parent 4fbc3d7 commit 8aa5d6f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion spartan_parallel/src/scalar/fp.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
use super::SpartanExtensionField;
use crate::{ProofTranscript, Transcript};
use goldilocks::{Goldilocks, MODULUS as P};
use core::borrow::Borrow;
use core::iter::{Product, Sum};
use core::ops::{Add, AddAssign, Mul, MulAssign, Sub, SubAssign};
use ff::{Field, FromUniformBytes};
use goldilocks::{Goldilocks, MODULUS as P};
use rand::{CryptoRng, RngCore};
use serde::{Deserialize, Serialize};
use std::ops::Neg;
Expand Down
2 changes: 1 addition & 1 deletion spartan_parallel/src/scalar/fp2.rs
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
use super::Scalar;
use super::SpartanExtensionField;
use crate::{AppendToTranscript, ProofTranscript, Transcript};
use goldilocks::{ExtensionField, Goldilocks, GoldilocksExt2};
use core::borrow::Borrow;
use core::iter::{Product, Sum};
use core::ops::{Add, AddAssign, Mul, MulAssign, Neg, Sub, SubAssign};
use ff::{Field, FromUniformBytes};
use goldilocks::{ExtensionField, Goldilocks, GoldilocksExt2};
use rand::{CryptoRng, RngCore};
use serde::{Deserialize, Serialize};
use subtle::{Choice, ConditionallySelectable, ConstantTimeEq, CtOption};
Expand Down
2 changes: 1 addition & 1 deletion spartan_parallel/src/scalar/mod.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
mod fp;
mod fp2;

use goldilocks::ExtensionField;
use ff::Field;
pub use fp::Scalar;
pub use fp2::ScalarExt2;
use goldilocks::ExtensionField;
use merlin::Transcript;
use rand::{CryptoRng, RngCore};
use serde::Serialize;
Expand Down

0 comments on commit 8aa5d6f

Please sign in to comment.