piratewallet-light-cli/Cargo.toml

78 lines
2.0 KiB
TOML
Raw Normal View History

2019-09-01 21:29:53 +00:00
[package]
2019-10-02 01:15:28 +00:00
name = "zecwallet-cli"
2019-09-01 21:29:53 +00:00
version = "0.1.0"
edition = "2018"
[dependencies]
tower-grpc = { git = "https://github.com/tower-rs/tower-grpc" }
futures = "0.1"
bytes = "0.4"
2019-09-10 00:40:00 +00:00
base58 = "0.1.0"
2019-09-01 21:29:53 +00:00
log = "0.4"
2019-10-02 17:12:21 +00:00
log4rs = "0.8.3"
2019-09-16 23:02:53 +00:00
dirs = "2.0.2"
2019-09-01 21:29:53 +00:00
http = "0.1"
prost = "0.5"
tokio = "0.1"
tower-request-modifier = { git = "https://github.com/tower-rs/tower-http" }
tower-util = "0.1"
2019-09-03 19:03:00 +00:00
hex = "0.3"
protobuf = "2"
2019-09-04 00:01:34 +00:00
rustyline = "5.0.2"
2019-09-06 16:57:13 +00:00
byteorder = "1"
2019-09-08 22:03:24 +00:00
json = "0.12.0"
2019-09-10 21:19:52 +00:00
shellwords = "1.0.0"
2019-09-21 03:36:00 +00:00
tiny-bip39 = "0.6.2"
2019-09-09 02:52:25 +00:00
clap = "2.33"
2019-09-10 00:40:00 +00:00
secp256k1 = "=0.15.0"
sha2 = "0.8.0"
ripemd160 = "0.8.0"
ring = "0.14.0"
lazy_static = "1.2.0"
2019-09-28 00:34:11 +00:00
tower-service = "0.2"
tokio-rustls = "0.10.0-alpha.3"
2019-10-09 17:51:14 +00:00
rustls = { version = "0.15.2", features = ["dangerous_configuration"] }
2019-09-28 00:34:11 +00:00
webpki = "0.19.1"
webpki-roots = "0.16.0"
tower-h2 = { git = "https://github.com/tower-rs/tower-h2" }
2019-09-30 19:13:43 +00:00
rust-embed = "5.1.0"
2019-10-09 18:38:19 +00:00
rand = "0.7.2"
2019-09-03 19:03:00 +00:00
[dependencies.bellman]
2019-09-18 03:30:48 +00:00
git = "https://github.com/adityapk00/librustzcash.git"
2019-10-09 19:27:31 +00:00
rev = "188537ea025fcb7fbdfc11266f307a084a5451e4"
2019-09-03 19:03:00 +00:00
default-features = false
features = ["groth16"]
[dependencies.pairing]
2019-09-18 03:30:48 +00:00
git = "https://github.com/adityapk00/librustzcash.git"
2019-10-09 19:27:31 +00:00
rev = "188537ea025fcb7fbdfc11266f307a084a5451e4"
2019-09-03 19:03:00 +00:00
[dependencies.zcash_client_backend]
2019-09-18 03:30:48 +00:00
git = "https://github.com/adityapk00/librustzcash.git"
2019-10-09 19:27:31 +00:00
rev = "188537ea025fcb7fbdfc11266f307a084a5451e4"
2019-09-03 19:03:00 +00:00
default-features = false
[dependencies.zcash_primitives]
2019-09-18 03:30:48 +00:00
git = "https://github.com/adityapk00/librustzcash.git"
2019-10-09 19:27:31 +00:00
rev = "188537ea025fcb7fbdfc11266f307a084a5451e4"
2019-09-03 19:03:00 +00:00
default-features = false
2019-09-10 00:40:00 +00:00
features = ["transparent-inputs"]
2019-09-03 19:03:00 +00:00
[dependencies.zcash_proofs]
2019-09-18 03:30:48 +00:00
git = "https://github.com/adityapk00/librustzcash.git"
2019-10-09 19:27:31 +00:00
rev = "188537ea025fcb7fbdfc11266f307a084a5451e4"
2019-09-03 19:03:00 +00:00
default-features = false
2019-09-06 20:13:14 +00:00
[dependencies.ff]
2019-09-18 03:30:48 +00:00
git = "https://github.com/adityapk00/librustzcash.git"
2019-10-09 19:27:31 +00:00
rev = "188537ea025fcb7fbdfc11266f307a084a5451e4"
2019-09-06 20:13:14 +00:00
features = ["ff_derive"]
2019-09-01 21:29:53 +00:00
[build-dependencies]
tower-grpc-build = { git = "https://github.com/tower-rs/tower-grpc", features = ["tower-hyper"] }
2019-10-09 18:38:19 +00:00
2019-09-22 18:21:29 +00:00
[profile.release]
2019-09-30 19:13:43 +00:00
debug = false