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