Pass bellman's multicore feature flag through to zcash_proofs

This enables someone using zcash_proofs to disable multicore.
This commit is contained in:
Jack Grigg 2019-12-03 15:15:13 +00:00
parent c3f9e2d73c
commit eed7e8199f
No known key found for this signature in database
GPG Key ID: 9E8255172BBF9898
1 changed files with 3 additions and 2 deletions

View File

@ -12,7 +12,7 @@ license = "MIT OR Apache-2.0"
edition = "2018"
[dependencies]
bellman = { version = "0.2.0", path = "../bellman" }
bellman = { version = "0.2.0", path = "../bellman", default-features = false, features = ["groth16"] }
blake2b_simd = "0.5"
byteorder = "1"
directories = { version = "1", optional = true }
@ -25,8 +25,9 @@ zcash_primitives = { version = "0.1.0", path = "../zcash_primitives" }
rand_xorshift = "0.2"
[features]
default = ["local-prover"]
default = ["local-prover", "multicore"]
local-prover = ["directories"]
multicore = ["bellman/multicore"]
[badges]
maintenance = { status = "actively-developed" }