patch dependencies and fix imports (#167)

Co-authored-by: Pratyush Mishra <pratyushmishra@berkeley.edu>
This commit is contained in:
Chris Sosnin
2023-08-19 23:13:13 +03:00
committed by GitHub
parent 32b487e7fd
commit 3fded1fbcc
5 changed files with 5 additions and 9 deletions

View File

@@ -72,4 +72,4 @@ ark-poly = { git = "https://github.com/arkworks-rs/algebra/" }
ark-serialize = { git = "https://github.com/arkworks-rs/algebra/" }
ark-algebra-test-templates = { git = "https://github.com/arkworks-rs/algebra/" }
ark-algebra-bench-templates = { git = "https://github.com/arkworks-rs/algebra/" }
ark-r1cs-std = { git = "https://github.com/mmaker/ark-r1cs-std/", branch = "feature/additive-groups" }
ark-r1cs-std = { git = "https://github.com/arkworks-rs/r1cs-std/" }

View File

@@ -1,9 +1,8 @@
use ark_algebra_test_templates::*;
use ark_ec::AdditiveGroup;
use ark_ff::{
biginteger::{BigInt, BigInteger, BigInteger384},
fields::{FftField, Field, Fp12Config, Fp2Config, Fp6Config, PrimeField},
One, UniformRand, Zero,
AdditiveGroup, One, UniformRand, Zero,
};
use ark_std::{
cmp::Ordering,

View File

@@ -1,10 +1,9 @@
use crate::{Fq, Fr};
use ark_algebra_test_templates::*;
use ark_ec::AdditiveGroup;
use ark_ff::{
biginteger::BigInteger256 as BigInteger,
fields::{Field, LegendreSymbol::*},
One, Zero,
AdditiveGroup, One, Zero,
};
use ark_std::str::FromStr;

View File

@@ -1,10 +1,9 @@
use crate::{Fq, Fr};
use ark_algebra_test_templates::*;
use ark_ec::AdditiveGroup;
use ark_ff::{
biginteger::BigInteger256 as BigInteger,
fields::{Field, LegendreSymbol::*},
One, Zero,
AdditiveGroup, One, Zero,
};
use ark_std::str::FromStr;

View File

@@ -1,9 +1,8 @@
use ark_algebra_test_templates::*;
use ark_ec::AdditiveGroup;
use ark_ff::{
biginteger::BigInteger256 as BigInteger,
fields::{Field, LegendreSymbol::*},
One, Zero,
AdditiveGroup, One, Zero,
};
use ark_std::str::FromStr;