Skip to content

Commit f30b173

Browse files
authored
Sync with ark-algebra: change the location of BitIteratorBE (#107)
* revert * fix
1 parent 4fbdc2b commit f30b173

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ ark-std = { git = "https://github.com/arkworks-rs/std" }
7777
ark-ec = { git = "https://github.com/arkworks-rs/algebra" }
7878
ark-ff = { git = "https://github.com/arkworks-rs/algebra" }
7979
ark-poly = { git = "https://github.com/arkworks-rs/algebra" }
80-
ark-algebra-bench-templates = { git = "https://github.com/arkworks-rs/algebra" }
80+
ark-serialize = { git = "https://github.com/arkworks-rs/algebra" }
8181
ark-test-curves = { git = "https://github.com/arkworks-rs/algebra" }
8282
ark-bls12-381 = { git = "https://github.com/arkworks-rs/curves" }
8383
ark-bls12-377 = { git = "https://github.com/arkworks-rs/curves" }

src/pairing/bls12/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use crate::{
77
groups::bls12::{G1AffineVar, G1PreparedVar, G1Var, G2PreparedVar, G2Var},
88
};
99
use ark_ec::bls12::{Bls12, Bls12Parameters, TwistType};
10-
use ark_ff::fields::BitIteratorBE;
10+
use ark_ff::BitIteratorBE;
1111
use core::marker::PhantomData;
1212

1313
/// Specifies the constraints for computing a pairing in a BLS12 bilinear group.

0 commit comments

Comments
 (0)