mirror of
https://github.com/arnaucube/ark-curves-cherry-picked.git
synced 2026-01-09 07:21:30 +01:00
patch dependencies and fix imports (#167)
Co-authored-by: Pratyush Mishra <pratyushmishra@berkeley.edu>
This commit is contained in:
@@ -72,4 +72,4 @@ ark-poly = { git = "https://github.com/arkworks-rs/algebra/" }
|
|||||||
ark-serialize = { 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-test-templates = { git = "https://github.com/arkworks-rs/algebra/" }
|
||||||
ark-algebra-bench-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/" }
|
||||||
|
|||||||
@@ -1,9 +1,8 @@
|
|||||||
use ark_algebra_test_templates::*;
|
use ark_algebra_test_templates::*;
|
||||||
use ark_ec::AdditiveGroup;
|
|
||||||
use ark_ff::{
|
use ark_ff::{
|
||||||
biginteger::{BigInt, BigInteger, BigInteger384},
|
biginteger::{BigInt, BigInteger, BigInteger384},
|
||||||
fields::{FftField, Field, Fp12Config, Fp2Config, Fp6Config, PrimeField},
|
fields::{FftField, Field, Fp12Config, Fp2Config, Fp6Config, PrimeField},
|
||||||
One, UniformRand, Zero,
|
AdditiveGroup, One, UniformRand, Zero,
|
||||||
};
|
};
|
||||||
use ark_std::{
|
use ark_std::{
|
||||||
cmp::Ordering,
|
cmp::Ordering,
|
||||||
|
|||||||
@@ -1,10 +1,9 @@
|
|||||||
use crate::{Fq, Fr};
|
use crate::{Fq, Fr};
|
||||||
use ark_algebra_test_templates::*;
|
use ark_algebra_test_templates::*;
|
||||||
use ark_ec::AdditiveGroup;
|
|
||||||
use ark_ff::{
|
use ark_ff::{
|
||||||
biginteger::BigInteger256 as BigInteger,
|
biginteger::BigInteger256 as BigInteger,
|
||||||
fields::{Field, LegendreSymbol::*},
|
fields::{Field, LegendreSymbol::*},
|
||||||
One, Zero,
|
AdditiveGroup, One, Zero,
|
||||||
};
|
};
|
||||||
use ark_std::str::FromStr;
|
use ark_std::str::FromStr;
|
||||||
|
|
||||||
|
|||||||
@@ -1,10 +1,9 @@
|
|||||||
use crate::{Fq, Fr};
|
use crate::{Fq, Fr};
|
||||||
use ark_algebra_test_templates::*;
|
use ark_algebra_test_templates::*;
|
||||||
use ark_ec::AdditiveGroup;
|
|
||||||
use ark_ff::{
|
use ark_ff::{
|
||||||
biginteger::BigInteger256 as BigInteger,
|
biginteger::BigInteger256 as BigInteger,
|
||||||
fields::{Field, LegendreSymbol::*},
|
fields::{Field, LegendreSymbol::*},
|
||||||
One, Zero,
|
AdditiveGroup, One, Zero,
|
||||||
};
|
};
|
||||||
use ark_std::str::FromStr;
|
use ark_std::str::FromStr;
|
||||||
|
|
||||||
|
|||||||
@@ -1,9 +1,8 @@
|
|||||||
use ark_algebra_test_templates::*;
|
use ark_algebra_test_templates::*;
|
||||||
use ark_ec::AdditiveGroup;
|
|
||||||
use ark_ff::{
|
use ark_ff::{
|
||||||
biginteger::BigInteger256 as BigInteger,
|
biginteger::BigInteger256 as BigInteger,
|
||||||
fields::{Field, LegendreSymbol::*},
|
fields::{Field, LegendreSymbol::*},
|
||||||
One, Zero,
|
AdditiveGroup, One, Zero,
|
||||||
};
|
};
|
||||||
use ark_std::str::FromStr;
|
use ark_std::str::FromStr;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user