Browse Source

paper wallet generator lib

taddr
adityapk00 5 years ago
parent
commit
84ae3fef3a
  1. 3
      cli/Cargo.toml
  2. 23
      lib/Cargo.toml
  3. 3
      lib/src/lib.rs

3
cli/Cargo.toml

@ -5,4 +5,5 @@ authors = ["ZecWallet"]
edition = "2018"
[dependencies]
clap = "~2.33"
clap = "~2.33"
zecpaperlib = { path = "../lib" }

23
lib/Cargo.toml

@ -0,0 +1,23 @@
[package]
name = "zecpaperlib"
version = "0.1.0"
authors = ["ZecWallet"]
edition = "2018"
[lib]
crate-type = ["cdylib"]
[dependencies]
bech32 = "0.6"
bellman = { git = "https://github.com/zcash/librustzcash" }
ff = { git = "https://github.com/zcash/librustzcash" }
hex = "0.3"
pairing = { git = "https://github.com/zcash/librustzcash" }
protobuf = "2"
rand = "0.4"
rusqlite = { version = "0.15", features = ["bundled"], optional = true }
sapling-crypto = { git = "https://github.com/zcash/librustzcash" }
time = { version = "0.1", optional = true }
zcash_primitives = { git = "https://github.com/zcash/librustzcash" }
zcash_proofs = { git = "https://github.com/zcash/librustzcash" }
zip32 = { git = "https://github.com/zcash/librustzcash" }

3
lib/src/lib.rs

@ -0,0 +1,3 @@
fn sayhello() {
println!("Hello, world!");
}
Loading…
Cancel
Save