Simple demo displaying address of a fixed spending key

This commit is contained in:
Jack Grigg
2019-06-11 00:39:28 +01:00
parent a56c4c2630
commit 4caf14baa2
7 changed files with 214 additions and 10 deletions

View File

@@ -26,6 +26,22 @@ console_error_panic_hook = { version = "0.1.1", optional = true }
# Unfortunately, `wee_alloc` requires nightly Rust when targeting wasm for now.
wee_alloc = { version = "0.4.2", optional = true }
[dependencies.pairing]
git = "https://github.com/str4d/librustzcash.git"
branch = "demo-wasm"
[dependencies.sapling-crypto]
git = "https://github.com/str4d/librustzcash.git"
branch = "demo-wasm"
[dependencies.zcash_client_backend]
git = "https://github.com/str4d/librustzcash.git"
branch = "demo-wasm"
[dependencies.zcash_primitives]
git = "https://github.com/str4d/librustzcash.git"
branch = "demo-wasm"
[dev-dependencies]
wasm-bindgen-test = "0.2"