From f30b173d0d4f6271d3d29a3ce3f47861ee1c4055 Mon Sep 17 00:00:00 2001 From: onewayfunc <56660958+onewayfunc@users.noreply.github.com> Date: Sat, 29 Oct 2022 10:57:37 -0700 Subject: [PATCH] Sync with ark-algebra: change the location of `BitIteratorBE` (#107) * revert * fix --- Cargo.toml | 2 +- src/pairing/bls12/mod.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 1c72ac8..8f0668a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -77,7 +77,7 @@ ark-std = { git = "https://github.com/arkworks-rs/std" } ark-ec = { git = "https://github.com/arkworks-rs/algebra" } ark-ff = { git = "https://github.com/arkworks-rs/algebra" } ark-poly = { git = "https://github.com/arkworks-rs/algebra" } -ark-algebra-bench-templates = { git = "https://github.com/arkworks-rs/algebra" } +ark-serialize = { git = "https://github.com/arkworks-rs/algebra" } ark-test-curves = { git = "https://github.com/arkworks-rs/algebra" } ark-bls12-381 = { git = "https://github.com/arkworks-rs/curves" } ark-bls12-377 = { git = "https://github.com/arkworks-rs/curves" } diff --git a/src/pairing/bls12/mod.rs b/src/pairing/bls12/mod.rs index 3b7ed9a..c6642ed 100644 --- a/src/pairing/bls12/mod.rs +++ b/src/pairing/bls12/mod.rs @@ -7,7 +7,7 @@ use crate::{ groups::bls12::{G1AffineVar, G1PreparedVar, G1Var, G2PreparedVar, G2Var}, }; use ark_ec::bls12::{Bls12, Bls12Parameters, TwistType}; -use ark_ff::fields::BitIteratorBE; +use ark_ff::BitIteratorBE; use core::marker::PhantomData; /// Specifies the constraints for computing a pairing in a BLS12 bilinear group.