From a51510c15d38b33ab3b50a4b8f759313e7afd563 Mon Sep 17 00:00:00 2001 From: Aditya Kulkarni Date: Mon, 16 Sep 2019 15:33:04 -0700 Subject: [PATCH] Fix build dependency --- Cargo.toml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 2ba2123..6a3ee00 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,28 +32,28 @@ sha2 = "0.8.0" ripemd160 = "0.8.0" [dependencies.bellman] -path = "../../librustzcash/bellman" +path = "../librustzcash/bellman" default-features = false features = ["groth16"] [dependencies.pairing] -path = "../../librustzcash/pairing" +path = "../librustzcash/pairing" [dependencies.zcash_client_backend] -path = "../../librustzcash/zcash_client_backend" +path = "../librustzcash/zcash_client_backend" default-features = false [dependencies.zcash_primitives] -path = "../../librustzcash/zcash_primitives" +path = "../librustzcash/zcash_primitives" default-features = false features = ["transparent-inputs"] [dependencies.zcash_proofs] -path = "../../librustzcash/zcash_proofs" +path = "../librustzcash/zcash_proofs" default-features = false [dependencies.ff] -path = "../../librustzcash/ff" +path = "../librustzcash/ff" features = ["ff_derive"] [build-dependencies]