65 lines
1.5 KiB
TOML
Raw Normal View History

2019-09-01 14:29:53 -07:00
[package]
2019-09-17 20:27:50 -07:00
name = "zeclite-cli"
2019-09-01 14:29:53 -07: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-09 17:40:00 -07:00
base58 = "0.1.0"
2019-09-01 14:29:53 -07:00
log = "0.4"
2019-09-16 21:13:54 -07:00
log4rs = { version = "0.8.3", default-features = false, features = ["file", "file_appender"]}
2019-09-16 16:02:53 -07:00
dirs = "2.0.2"
2019-09-01 14:29:53 -07:00
http = "0.1"
prost = "0.5"
tokio = "0.1"
tower-request-modifier = { git = "https://github.com/tower-rs/tower-http" }
tower-hyper = "0.1"
hyper = "0.12"
tower-util = "0.1"
2019-09-03 12:03:00 -07:00
hex = "0.3"
protobuf = "2"
2019-09-03 17:01:34 -07:00
rustyline = "5.0.2"
2019-09-06 09:57:13 -07:00
byteorder = "1"
2019-09-07 22:27:35 -07:00
rand = "0.5.6"
2019-09-08 15:03:24 -07:00
json = "0.12.0"
2019-09-10 14:19:52 -07:00
shellwords = "1.0.0"
2019-09-20 20:36:00 -07:00
tiny-bip39 = "0.6.2"
2019-09-08 19:52:25 -07:00
clap = "2.33"
2019-09-09 17:40:00 -07:00
secp256k1 = "=0.15.0"
sha2 = "0.8.0"
ripemd160 = "0.8.0"
ring = "0.14.0"
lazy_static = "1.2.0"
2019-09-03 12:03:00 -07:00
[dependencies.bellman]
2019-09-17 20:30:48 -07:00
git = "https://github.com/adityapk00/librustzcash.git"
2019-09-03 12:03:00 -07:00
default-features = false
features = ["groth16"]
[dependencies.pairing]
2019-09-17 20:30:48 -07:00
git = "https://github.com/adityapk00/librustzcash.git"
2019-09-03 12:03:00 -07:00
[dependencies.zcash_client_backend]
2019-09-17 20:30:48 -07:00
git = "https://github.com/adityapk00/librustzcash.git"
2019-09-03 12:03:00 -07:00
default-features = false
[dependencies.zcash_primitives]
2019-09-17 20:30:48 -07:00
git = "https://github.com/adityapk00/librustzcash.git"
2019-09-03 12:03:00 -07:00
default-features = false
2019-09-09 17:40:00 -07:00
features = ["transparent-inputs"]
2019-09-03 12:03:00 -07:00
[dependencies.zcash_proofs]
2019-09-17 20:30:48 -07:00
git = "https://github.com/adityapk00/librustzcash.git"
2019-09-03 12:03:00 -07:00
default-features = false
2019-09-06 13:13:14 -07:00
[dependencies.ff]
2019-09-17 20:30:48 -07:00
git = "https://github.com/adityapk00/librustzcash.git"
2019-09-06 13:13:14 -07:00
features = ["ff_derive"]
2019-09-01 14:29:53 -07:00
[build-dependencies]
tower-grpc-build = { git = "https://github.com/tower-rs/tower-grpc", features = ["tower-hyper"] }
[profile.release]
2019-09-17 21:15:56 -07:00
debug = true