From 93563c3c65a763df5afdae78167dd40a3688b529 Mon Sep 17 00:00:00 2001 From: Jim Posen Date: Fri, 4 Oct 2019 08:50:01 +0200 Subject: [PATCH] Specify rand_core >= 0.5.1 for OsRng import. --- librustzcash/Cargo.toml | 2 +- zcash_primitives/Cargo.toml | 2 +- zcash_proofs/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/librustzcash/Cargo.toml b/librustzcash/Cargo.toml index a44d3b5..567bf7c 100644 --- a/librustzcash/Cargo.toml +++ b/librustzcash/Cargo.toml @@ -24,6 +24,6 @@ libc = "0.2" pairing = { path = "../pairing" } lazy_static = "1" byteorder = "1" -rand_core = "0.5" +rand_core = "0.5.1" zcash_primitives = { path = "../zcash_primitives" } zcash_proofs = { path = "../zcash_proofs" } diff --git a/zcash_primitives/Cargo.toml b/zcash_primitives/Cargo.toml index 2becbc4..1b365e3 100644 --- a/zcash_primitives/Cargo.toml +++ b/zcash_primitives/Cargo.toml @@ -20,7 +20,7 @@ lazy_static = "1" log = "0.4" pairing = { path = "../pairing" } rand = "0.7" -rand_core = "0.5" +rand_core = "0.5.1" sha2 = "0.8" [dev-dependencies] diff --git a/zcash_proofs/Cargo.toml b/zcash_proofs/Cargo.toml index 6dab0d1..9d07727 100644 --- a/zcash_proofs/Cargo.toml +++ b/zcash_proofs/Cargo.toml @@ -14,7 +14,7 @@ byteorder = "1" directories = { version = "1", optional = true } ff = { path = "../ff" } pairing = { path = "../pairing" } -rand_core = "0.5" +rand_core = "0.5.1" zcash_primitives = { path = "../zcash_primitives" } [dev-dependencies]