Migrate to rand 0.7

This commit is contained in:
Jack Grigg 2019-07-14 12:19:01 +01:00
parent 055280fd82
commit 9b3d76694b
1 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,6 @@ repository = "https://github.com/ebfull/bellman"
version = "0.1.0" version = "0.1.0"
[dependencies] [dependencies]
rand_core = "0.4"
bit-vec = "0.4.4" bit-vec = "0.4.4"
ff = { path = "../ff" } ff = { path = "../ff" }
futures = "0.1" futures = "0.1"
@ -18,10 +17,11 @@ group = { path = "../group" }
num_cpus = { version = "1", optional = true } num_cpus = { version = "1", optional = true }
crossbeam = { version = "0.3", optional = true } crossbeam = { version = "0.3", optional = true }
pairing = { path = "../pairing", optional = true } pairing = { path = "../pairing", optional = true }
rand_core = "0.5"
byteorder = "1" byteorder = "1"
[dev-dependencies] [dev-dependencies]
rand = "0.6" rand = "0.7"
[features] [features]
groth16 = ["pairing"] groth16 = ["pairing"]