Upgrade to test-templates from algebra (#40)

* Upgrade to test-templates from algebra

* Fix Cargo.toml

* Fix search and replace

* Update

* Fix cargo tomls
This commit is contained in:
Pratyush Mishra
2021-01-31 11:47:41 -08:00
committed by GitHub
parent cd88721883
commit 487f0043d8
62 changed files with 72 additions and 1212 deletions

View File

@@ -22,7 +22,7 @@ ark-bls12-381 = { path = "../bls12_381", default-features = false, features = [
[dev-dependencies]
ark-relations = { git = "https://github.com/arkworks-rs/snark", default-features = false }
ark-serialize = { git = "https://github.com/arkworks-rs/algebra", default-features = false }
ark-curve-tests = { path = "../curve-tests", default-features = false }
ark-algebra-test-templates = { git = "https://github.com/arkworks-rs/algebra", default-features = false }
ark-curve-constraint-tests = { path = "../curve-constraint-tests", default-features = false }
rand = { version = "0.7", default-features = false }
rand_xorshift = "0.2"

View File

@@ -6,7 +6,7 @@ use rand::Rng;
use crate::*;
use ark_curve_tests::{curves::*, groups::*};
use ark_algebra_test_templates::{curves::*, groups::*};
#[test]
fn test_projective_curve() {

View File

@@ -7,7 +7,7 @@ use ark_ff::{
};
use ark_std::test_rng;
use ark_curve_tests::fields::*;
use ark_algebra_test_templates::fields::*;
use core::str::FromStr;
use rand::Rng;