2019-09-01 21:29:53 +00:00
|
|
|
[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"
|
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-03 19:03:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
[dependencies.bellman]
|
2019-09-06 03:32:42 +00:00
|
|
|
git = "https://github.com/adityapk00/librustzcash.git"
|
|
|
|
branch = "lightclient-work"
|
2019-09-03 19:03:00 +00:00
|
|
|
default-features = false
|
|
|
|
features = ["groth16"]
|
|
|
|
|
|
|
|
[dependencies.pairing]
|
2019-09-06 03:32:42 +00:00
|
|
|
git = "https://github.com/adityapk00/librustzcash.git"
|
|
|
|
branch = "lightclient-work"
|
2019-09-03 19:03:00 +00:00
|
|
|
|
|
|
|
[dependencies.zcash_client_backend]
|
2019-09-06 03:32:42 +00:00
|
|
|
git = "https://github.com/adityapk00/librustzcash.git"
|
|
|
|
branch = "lightclient-work"
|
2019-09-03 19:03:00 +00:00
|
|
|
default-features = false
|
|
|
|
|
|
|
|
[dependencies.zcash_primitives]
|
2019-09-06 03:32:42 +00:00
|
|
|
git = "https://github.com/adityapk00/librustzcash.git"
|
|
|
|
branch = "lightclient-work"
|
2019-09-03 19:03:00 +00:00
|
|
|
default-features = false
|
|
|
|
|
|
|
|
[dependencies.zcash_proofs]
|
2019-09-06 03:32:42 +00:00
|
|
|
git = "https://github.com/adityapk00/librustzcash.git"
|
|
|
|
branch = "lightclient-work"
|
2019-09-03 19:03:00 +00:00
|
|
|
default-features = false
|
|
|
|
|
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-09-05 17:56:19 +00:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
debug = true
|