From 9b3d76694bd7b54d931789e1297c55ca426f528d Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Sun, 14 Jul 2019 12:19:01 +0100 Subject: [PATCH] Migrate to rand 0.7 --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index a56b1edeb..b15671e97 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,6 @@ repository = "https://github.com/ebfull/bellman" version = "0.1.0" [dependencies] -rand_core = "0.4" bit-vec = "0.4.4" ff = { path = "../ff" } futures = "0.1" @@ -18,10 +17,11 @@ group = { path = "../group" } num_cpus = { version = "1", optional = true } crossbeam = { version = "0.3", optional = true } pairing = { path = "../pairing", optional = true } +rand_core = "0.5" byteorder = "1" [dev-dependencies] -rand = "0.6" +rand = "0.7" [features] groth16 = ["pairing"]