mirror of
https://github.com/Qortal/piratewallet-light-cli.git
synced 2025-01-30 18:42:15 +00:00
79 lines
2.0 KiB
TOML
79 lines
2.0 KiB
TOML
[package]
|
|
name = "zecwallet-cli"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
tower-grpc = { git = "https://github.com/tower-rs/tower-grpc" }
|
|
futures = "0.1"
|
|
bytes = "0.4"
|
|
base58 = "0.1.0"
|
|
log = "0.4"
|
|
log4rs = { version = "0.8.3", default-features = false, features = ["file", "file_appender"]}
|
|
dirs = "2.0.2"
|
|
http = "0.1"
|
|
prost = "0.5"
|
|
tokio = "0.1"
|
|
tower-request-modifier = { git = "https://github.com/tower-rs/tower-http" }
|
|
hyper = "0.12"
|
|
tower-util = "0.1"
|
|
hex = "0.3"
|
|
protobuf = "2"
|
|
rustyline = "5.0.2"
|
|
byteorder = "1"
|
|
rand = "0.5.6"
|
|
json = "0.12.0"
|
|
shellwords = "1.0.0"
|
|
tiny-bip39 = "0.6.2"
|
|
clap = "2.33"
|
|
secp256k1 = "=0.15.0"
|
|
sha2 = "0.8.0"
|
|
ripemd160 = "0.8.0"
|
|
ring = "0.14.0"
|
|
lazy_static = "1.2.0"
|
|
tower-service = "0.2"
|
|
tokio-rustls = "0.10.0-alpha.3"
|
|
webpki = "0.19.1"
|
|
webpki-roots = "0.16.0"
|
|
tower-h2 = { git = "https://github.com/tower-rs/tower-h2" }
|
|
rust-embed = "5.1.0"
|
|
|
|
[dependencies.bellman]
|
|
git = "https://github.com/adityapk00/librustzcash.git"
|
|
rev = "0743dadcd017b60a0ac7123d04f0d6e7ce1e8016"
|
|
default-features = false
|
|
features = ["groth16"]
|
|
|
|
[dependencies.pairing]
|
|
git = "https://github.com/adityapk00/librustzcash.git"
|
|
rev = "0743dadcd017b60a0ac7123d04f0d6e7ce1e8016"
|
|
|
|
[dependencies.zcash_client_backend]
|
|
git = "https://github.com/adityapk00/librustzcash.git"
|
|
rev = "0743dadcd017b60a0ac7123d04f0d6e7ce1e8016"
|
|
default-features = false
|
|
|
|
[dependencies.zcash_primitives]
|
|
git = "https://github.com/adityapk00/librustzcash.git"
|
|
rev = "0743dadcd017b60a0ac7123d04f0d6e7ce1e8016"
|
|
default-features = false
|
|
features = ["transparent-inputs"]
|
|
|
|
[dependencies.zcash_proofs]
|
|
git = "https://github.com/adityapk00/librustzcash.git"
|
|
rev = "0743dadcd017b60a0ac7123d04f0d6e7ce1e8016"
|
|
default-features = false
|
|
|
|
[dependencies.ff]
|
|
git = "https://github.com/adityapk00/librustzcash.git"
|
|
rev = "0743dadcd017b60a0ac7123d04f0d6e7ce1e8016"
|
|
features = ["ff_derive"]
|
|
|
|
[build-dependencies]
|
|
tower-grpc-build = { git = "https://github.com/tower-rs/tower-grpc", features = ["tower-hyper"] }
|
|
|
|
[dev-dependencies]
|
|
rand_core = "0.5.1"
|
|
|
|
[profile.release]
|
|
debug = false |