update from rand_os to fix warnings

This commit is contained in:
NikVolf
2019-09-28 10:48:43 +03:00
parent 30660e1d1c
commit b42477a0bf
13 changed files with 13 additions and 33 deletions

View File

@@ -13,11 +13,10 @@ byteorder = "1"
directories = { version = "1", optional = true }
ff = { path = "../ff" }
pairing = { path = "../pairing" }
rand_os = "0.2"
zcash_primitives = { path = "../zcash_primitives" }
rand_core = "0.5"
[dev-dependencies]
rand_core = "0.5"
rand_xorshift = "0.2"
[features]

View File

@@ -4,7 +4,7 @@ use bellman::{
};
use ff::Field;
use pairing::bls12_381::{Bls12, Fr};
use rand_os::OsRng;
use rand_core::OsRng;
use zcash_primitives::{
jubjub::{edwards, fs::Fs, FixedGenerators, JubjubBls12, Unknown},
primitives::{Diversifier, Note, PaymentAddress, ProofGenerationKey, ValueCommitment},