Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
adria0 committed Oct 4, 2024
1 parent 5dd1d49 commit cb0a3f6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/bls12381/g2.rs
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
use crate::bls12381::fq::Fq;
use crate::bls12381::fq2::Fq2;
use crate::bls12381::fr::Fr;
use crate::encoding::{Compressed, CompressedFlagConfig};
use crate::ff::WithSmallOrderMulGroup;
use crate::ff::{Field, PrimeField};
use crate::ff_ext::ExtField;
use crate::group::Curve;
use crate::group::{cofactor::CofactorGroup, prime::PrimeCurveAffine, Group, GroupEncoding};
use crate::encoding::{Compressed, CompressedFlagConfig};
use crate::{
impl_binops_additive, impl_binops_additive_specify_output, impl_binops_multiplicative,
impl_binops_multiplicative_mixed, new_curve_impl,
Expand Down
4 changes: 2 additions & 2 deletions src/derive/field/tower.rs
Original file line number Diff line number Diff line change
Expand Up @@ -148,9 +148,9 @@ macro_rules! impl_tower2 {
Choice::from(self.to_repr().as_ref()[0] & 1)
}
}
}
};
}

#[macro_export]
macro_rules! impl_tower2_from_uniform_bytes {
(
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
mod arithmetic;
pub mod encoding;
pub mod ff_ext;
pub mod fft;
pub mod hash_to_curve;
pub mod msm;
pub mod encoding;

pub mod bls12381;
pub mod bn256;
Expand Down

0 comments on commit cb0a3f6

Please sign in to comment.