2018-08-23 22:15:22 +00:00
|
|
|
[package]
|
2018-10-22 16:36:23 +00:00
|
|
|
name = "zcash_client_backend"
|
2019-10-08 03:11:39 +00:00
|
|
|
description = "APIs for creating shielded Zcash light clients"
|
2020-03-12 21:59:19 +00:00
|
|
|
version = "0.2.0"
|
2018-08-23 22:15:22 +00:00
|
|
|
authors = [
|
|
|
|
"Jack Grigg <jack@z.cash>",
|
|
|
|
]
|
2019-10-08 03:11:39 +00:00
|
|
|
homepage = "https://github.com/zcash/librustzcash"
|
|
|
|
repository = "https://github.com/zcash/librustzcash"
|
2019-08-02 13:57:34 +00:00
|
|
|
readme = "README.md"
|
2019-10-08 03:11:39 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
2018-10-22 16:36:23 +00:00
|
|
|
edition = "2018"
|
2018-08-23 22:15:22 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2019-07-22 23:18:53 +00:00
|
|
|
bech32 = "0.7"
|
2019-05-24 14:17:36 +00:00
|
|
|
bs58 = { version = "0.2", features = ["check"] }
|
2020-03-12 21:59:19 +00:00
|
|
|
ff = { version = "0.6", path = "../ff" }
|
2018-10-12 17:24:25 +00:00
|
|
|
hex = "0.3"
|
2020-03-12 21:59:19 +00:00
|
|
|
pairing = { version = "0.16", path = "../pairing" }
|
2018-10-12 17:22:58 +00:00
|
|
|
protobuf = "2"
|
2019-08-21 23:57:04 +00:00
|
|
|
subtle = "2"
|
2020-03-12 21:59:19 +00:00
|
|
|
zcash_primitives = { version = "0.2", path = "../zcash_primitives" }
|
2018-10-17 09:06:13 +00:00
|
|
|
|
2018-10-12 17:22:58 +00:00
|
|
|
[build-dependencies]
|
|
|
|
protobuf-codegen-pure = "2"
|
|
|
|
|
2018-10-17 09:06:13 +00:00
|
|
|
[dev-dependencies]
|
2019-07-14 11:19:01 +00:00
|
|
|
rand_core = "0.5"
|
2018-10-12 17:24:25 +00:00
|
|
|
rand_os = "0.2"
|
2019-07-14 11:19:01 +00:00
|
|
|
rand_xorshift = "0.2"
|
2019-10-08 03:11:39 +00:00
|
|
|
|
|
|
|
[badges]
|
|
|
|
maintenance = { status = "actively-developed" }
|