mirror of
https://github.com/Qortal/piratewallet-light-cli.git
synced 2025-07-30 03:41:28 +00:00

Warning: this is unsafe - do not use with real funds unless you have read the code in detail and know exactly what it is doing. Many safety checks and features (such as paying change) are disabled. This is a work in progress, and very experimental.
85 lines
2.0 KiB
TOML
85 lines
2.0 KiB
TOML
[package]
|
|
name = "zecwalletlitelib"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
|
|
[features]
|
|
default = ["embed_params"]
|
|
embed_params = []
|
|
|
|
[dependencies]
|
|
base58 = "0.1.0"
|
|
log = "0.4"
|
|
log4rs = "0.8.3"
|
|
dirs = "2.0.2"
|
|
http = "0.2"
|
|
hex = "0.3"
|
|
protobuf = "2"
|
|
byteorder = "1"
|
|
json = "0.12.0"
|
|
tiny-bip39 = "0.6.2"
|
|
secp256k1 = "=0.15.0"
|
|
sha2 = "0.8.0"
|
|
ripemd160 = "0.8.0"
|
|
lazy_static = "1.2.0"
|
|
num-integer = "0.1.44"
|
|
rust-embed = { version = "5.1.0", features = ["debug-embed"] }
|
|
rand = "0.7.2"
|
|
sodiumoxide = "0.2.5"
|
|
ring = "0.16.9"
|
|
libflate = "0.1"
|
|
subtle = "2"
|
|
threadpool = "1.8.0"
|
|
num_cpus = "1.12.0"
|
|
|
|
tonic = { version = "0.2.1", features = ["tls", "tls-roots"] }
|
|
bytes = "0.4"
|
|
prost = "0.6"
|
|
prost-types = "0.6"
|
|
tokio = { version = "0.2", features = ["rt-threaded", "time", "stream", "fs", "macros", "uds", "full"] }
|
|
tokio-rustls = { version = "0.13.0" }
|
|
webpki = "0.21.0"
|
|
webpki-roots = "0.18.0"
|
|
|
|
serde = "1.0"
|
|
serde_json = "1.0"
|
|
serde_derive = "1.0"
|
|
reqwest = { version = "0.10.8", features = ["blocking", "json"] }
|
|
|
|
[dependencies.bellman]
|
|
git = "https://github.com/CalDescent1/librustzcash.git"
|
|
rev = "5a4fd01f351259694c31ca161842dfd7078ef2f1"
|
|
default-features = false
|
|
features = ["groth16", "multicore"]
|
|
|
|
[dependencies.pairing]
|
|
git = "https://github.com/CalDescent1/librustzcash.git"
|
|
rev = "5a4fd01f351259694c31ca161842dfd7078ef2f1"
|
|
|
|
[dependencies.zcash_client_backend]
|
|
git = "https://github.com/CalDescent1/librustzcash.git"
|
|
rev = "5a4fd01f351259694c31ca161842dfd7078ef2f1"
|
|
default-features = false
|
|
|
|
[dependencies.zcash_primitives]
|
|
git = "https://github.com/CalDescent1/librustzcash.git"
|
|
rev = "5a4fd01f351259694c31ca161842dfd7078ef2f1"
|
|
default-features = false
|
|
features = ["transparent-inputs"]
|
|
|
|
[dependencies.zcash_proofs]
|
|
git = "https://github.com/CalDescent1/librustzcash.git"
|
|
rev = "5a4fd01f351259694c31ca161842dfd7078ef2f1"
|
|
default-features = false
|
|
|
|
[dependencies.ff]
|
|
git = "https://github.com/CalDescent1/librustzcash.git"
|
|
rev = "5a4fd01f351259694c31ca161842dfd7078ef2f1"
|
|
features = ["ff_derive"]
|
|
|
|
[build-dependencies]
|
|
tonic-build = "0.1.1"
|
|
|
|
[dev-dependencies]
|
|
tempdir = "0.3.7"
|