librustzcash/zcash_client_backend/Cargo.toml

35 lines
764 B
TOML
Raw Normal View History

[package]
name = "zcash_client_backend"
2019-10-07 20:11:39 -07:00
description = "APIs for creating shielded Zcash light clients"
version = "0.4.0"
authors = [
"Jack Grigg <jack@z.cash>",
]
2019-10-07 20:11:39 -07:00
homepage = "https://github.com/zcash/librustzcash"
repository = "https://github.com/zcash/librustzcash"
readme = "README.md"
2019-10-07 20:11:39 -07:00
license = "MIT OR Apache-2.0"
edition = "2018"
[dependencies]
2019-07-22 16:18:53 -07:00
bech32 = "0.7"
2020-09-09 08:51:53 -07:00
bls12_381 = "0.3.1"
bs58 = { version = "0.3", features = ["check"] }
ff = "0.8"
group = "0.8"
2020-06-25 03:23:42 -07:00
hex = "0.4"
2020-09-09 08:51:53 -07:00
jubjub = "0.5.1"
protobuf = "2.15"
subtle = "2"
zcash_primitives = { version = "0.4", path = "../zcash_primitives" }
2018-10-12 10:22:58 -07:00
[build-dependencies]
protobuf-codegen-pure = "2.15"
2018-10-12 10:22:58 -07:00
[dev-dependencies]
2019-07-14 04:19:01 -07:00
rand_core = "0.5"
rand_xorshift = "0.2"
2019-10-07 20:11:39 -07:00
[badges]
maintenance = { status = "actively-developed" }