Save and Read wallet

This commit is contained in:
Aditya Kulkarni
2019-09-06 13:13:14 -07:00
parent 81b6b52ba0
commit 7ebc8686ed
6 changed files with 284 additions and 28 deletions

View File

@@ -23,30 +23,28 @@ rustyline = "5.0.2"
byteorder = "1"
[dependencies.bellman]
git = "https://github.com/adityapk00/librustzcash.git"
branch = "lightclient-work"
path = "../../librustzcash/bellman"
default-features = false
features = ["groth16"]
[dependencies.pairing]
git = "https://github.com/adityapk00/librustzcash.git"
branch = "lightclient-work"
path = "../../librustzcash/pairing"
[dependencies.zcash_client_backend]
git = "https://github.com/adityapk00/librustzcash.git"
branch = "lightclient-work"
path = "../../librustzcash/zcash_client_backend"
default-features = false
[dependencies.zcash_primitives]
git = "https://github.com/adityapk00/librustzcash.git"
branch = "lightclient-work"
path = "../../librustzcash/zcash_primitives"
default-features = false
[dependencies.zcash_proofs]
git = "https://github.com/adityapk00/librustzcash.git"
branch = "lightclient-work"
path = "../../librustzcash/zcash_proofs"
default-features = false
[dependencies.ff]
path = "../../librustzcash/ff"
features = ["ff_derive"]
[build-dependencies]
tower-grpc-build = { git = "https://github.com/tower-rs/tower-grpc", features = ["tower-hyper"] }