From 79aab950c45a929eb9cddeeeee27b244874a0a00 Mon Sep 17 00:00:00 2001 From: ghassmo Date: Fri, 30 Apr 2021 17:57:26 +0300 Subject: [PATCH] use zcash_proofs and zcash_primitives crates --- Cargo.toml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 9e012172f..2852216d8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,8 +16,10 @@ bellman = { version = "0.8", default-features = false, features = ["groth16"] } bls12_381 = "0.3.1" jubjub = "0.5.1" -zcash_primitives = { git = "https://github.com/zcash/librustzcash" } -zcash_proofs = { git = "https://github.com/zcash/librustzcash" } +zcash_primitives = "0.5.0" +zcash_proofs = "0.5.0" +# zcash_primitives = { git = "https://github.com/zcash/librustzcash" } +#zcash_proofs = { git = "https://github.com/zcash/librustzcash" } #zcash_proofs = { git = "https://github.com/narodnik/librustzcash" } #bench-utils = { git = "https://github.com/scipr-lab/zexe", features = ["print-trace"]} rand = "0.7.3"