Version bump of all crates (except librustzcash)

This commit is contained in:
Sean Bowe
2020-03-12 15:59:19 -06:00
parent f3f8964001
commit 100878cd14
11 changed files with 62 additions and 62 deletions

View File

@@ -1,7 +1,7 @@
[package]
name = "zcash_proofs"
description = "Zcash zk-SNARK circuits and proving APIs"
version = "0.1.0"
version = "0.2.0"
authors = [
"Jack Grigg <jack@z.cash>",
]
@@ -12,14 +12,14 @@ license = "MIT OR Apache-2.0"
edition = "2018"
[dependencies]
bellman = { version = "0.2.0", path = "../bellman", default-features = false, features = ["groth16"] }
bellman = { version = "0.6", path = "../bellman", default-features = false, features = ["groth16"] }
blake2b_simd = "0.5"
byteorder = "1"
directories = { version = "1", optional = true }
ff = { version = "0.5.0", path = "../ff" }
pairing = { version = "0.15.0", path = "../pairing" }
ff = { version = "0.6", path = "../ff" }
pairing = { version = "0.16", path = "../pairing" }
rand_core = "0.5.1"
zcash_primitives = { version = "0.1.0", path = "../zcash_primitives" }
zcash_primitives = { version = "0.2", path = "../zcash_primitives" }
[dev-dependencies]
rand_xorshift = "0.2"