piratewallet-light-cli/rust-lightclient/Cargo.toml
2019-09-06 13:13:14 -07:00

53 lines
1.2 KiB
TOML

[package]
name = "rust-lightclient"
version = "0.1.0"
edition = "2018"
[dependencies]
tower-grpc = { git = "https://github.com/tower-rs/tower-grpc" }
futures = "0.1"
bytes = "0.4"
env_logger = { version = "0.5", default-features = false }
log = "0.4"
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-service = "0.2"
tower-util = "0.1"
hex = "0.3"
protobuf = "2"
rustyline = "5.0.2"
byteorder = "1"
[dependencies.bellman]
path = "../../librustzcash/bellman"
default-features = false
features = ["groth16"]
[dependencies.pairing]
path = "../../librustzcash/pairing"
[dependencies.zcash_client_backend]
path = "../../librustzcash/zcash_client_backend"
default-features = false
[dependencies.zcash_primitives]
path = "../../librustzcash/zcash_primitives"
default-features = false
[dependencies.zcash_proofs]
path = "../../librustzcash/zcash_proofs"
default-features = false
[dependencies.ff]
path = "../../librustzcash/ff"
features = ["ff_derive"]
[build-dependencies]
tower-grpc-build = { git = "https://github.com/tower-rs/tower-grpc", features = ["tower-hyper"] }
[profile.release]
debug = true