mirror of
https://github.com/Qortal/pirate-librustzcash.git
synced 2025-07-30 20:11:23 +00:00
Migrate ff, group, pairing, and bellman to rand 0.6
This commit is contained in:
@@ -14,4 +14,5 @@ repository = "https://github.com/ebfull/group"
|
||||
|
||||
[dependencies]
|
||||
ff = { path = "../ff" }
|
||||
rand = "0.5"
|
||||
rand = "0.6"
|
||||
rand_xorshift = "0.1"
|
||||
|
@@ -1,5 +1,6 @@
|
||||
extern crate ff;
|
||||
extern crate rand;
|
||||
extern crate rand_xorshift;
|
||||
|
||||
use ff::{PrimeField, PrimeFieldDecodingError, ScalarEngine, SqrtField};
|
||||
use rand::RngCore;
|
||||
|
@@ -1,5 +1,6 @@
|
||||
use ff::{Field, PrimeField};
|
||||
use rand::{SeedableRng, XorShiftRng};
|
||||
use rand::SeedableRng;
|
||||
use rand_xorshift::XorShiftRng;
|
||||
|
||||
use {CurveAffine, CurveProjective, EncodedPoint};
|
||||
|
||||
|
Reference in New Issue
Block a user