Skip to content
This repository has been archived by the owner on Dec 18, 2023. It is now read-only.

patch dependencies and fix imports #167

Merged
merged 3 commits into from
Aug 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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/" }
3 changes: 1 addition & 2 deletions bls12_381/src/fields/tests.rs
Original file line number Diff line number Diff line change
@@ -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,
Expand Down
3 changes: 1 addition & 2 deletions ed_on_bls12_381/src/fields/tests.rs
Original file line number Diff line number Diff line change
@@ -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;

Expand Down
3 changes: 1 addition & 2 deletions ed_on_bls12_381_bandersnatch/src/fields/tests.rs
Original file line number Diff line number Diff line change
@@ -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;

Expand Down
3 changes: 1 addition & 2 deletions ed_on_bn254/src/fields/tests.rs
Original file line number Diff line number Diff line change
@@ -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;

Expand Down