diff --git a/librustzcash/Cargo.toml b/librustzcash/Cargo.toml index a44d3b54e..567bf7c84 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 2becbc47b..1b365e35a 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 6dab0d130..9d0772786 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]