bellman 0.2.0

This commit is contained in:
Jack Grigg 2019-10-08 16:05:46 +13:00
parent 68cada53cf
commit 25558893ab
No known key found for this signature in database
GPG Key ID: 9E8255172BBF9898
2 changed files with 10 additions and 7 deletions

6
Cargo.lock generated
View File

@ -54,7 +54,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]] [[package]]
name = "bellman" name = "bellman"
version = "0.1.0" version = "0.2.0"
dependencies = [ dependencies = [
"bit-vec 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", "bit-vec 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)",
"blake2s_simd 0.5.8 (registry+https://github.com/rust-lang/crates.io-index)", "blake2s_simd 0.5.8 (registry+https://github.com/rust-lang/crates.io-index)",
@ -359,7 +359,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
name = "librustzcash" name = "librustzcash"
version = "0.1.0" version = "0.1.0"
dependencies = [ dependencies = [
"bellman 0.1.0", "bellman 0.2.0",
"blake2b_simd 0.5.8 (registry+https://github.com/rust-lang/crates.io-index)", "blake2b_simd 0.5.8 (registry+https://github.com/rust-lang/crates.io-index)",
"blake2s_simd 0.5.8 (registry+https://github.com/rust-lang/crates.io-index)", "blake2s_simd 0.5.8 (registry+https://github.com/rust-lang/crates.io-index)",
"byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
@ -638,7 +638,7 @@ dependencies = [
name = "zcash_proofs" name = "zcash_proofs"
version = "0.0.0" version = "0.0.0"
dependencies = [ dependencies = [
"bellman 0.1.0", "bellman 0.2.0",
"blake2b_simd 0.5.8 (registry+https://github.com/rust-lang/crates.io-index)", "blake2b_simd 0.5.8 (registry+https://github.com/rust-lang/crates.io-index)",
"byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
"directories 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "directories 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",

View File

@ -7,19 +7,19 @@ homepage = "https://github.com/ebfull/bellman"
license = "MIT/Apache-2.0" license = "MIT/Apache-2.0"
name = "bellman" name = "bellman"
repository = "https://github.com/ebfull/bellman" repository = "https://github.com/ebfull/bellman"
version = "0.1.0" version = "0.2.0"
edition = "2018" edition = "2018"
[dependencies] [dependencies]
bit-vec = "0.4.4" bit-vec = "0.4.4"
blake2s_simd = "0.5" blake2s_simd = "0.5"
ff = { path = "../ff" } ff = { version = "0.5.0", path = "../ff" }
futures = "0.1" futures = "0.1"
futures-cpupool = { version = "0.1", optional = true } futures-cpupool = { version = "0.1", optional = true }
group = { path = "../group" } group = { version = "0.2.0", path = "../group" }
num_cpus = { version = "1", optional = true } num_cpus = { version = "1", optional = true }
crossbeam = { version = "0.7", optional = true } crossbeam = { version = "0.7", optional = true }
pairing = { path = "../pairing", optional = true } pairing = { version = "0.15.0", path = "../pairing", optional = true }
rand_core = "0.5" rand_core = "0.5"
byteorder = "1" byteorder = "1"
@ -38,3 +38,6 @@ default = ["groth16", "multicore"]
name = "mimc" name = "mimc"
path = "tests/mimc.rs" path = "tests/mimc.rs"
required-features = ["groth16"] required-features = ["groth16"]
[badges]
maintenance = { status = "actively-developed" }