librustzcash/zcash_client_backend/Cargo.toml

32 lines
749 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.1.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"
ff = { version = "0.5.0", path = "../ff" }
hex = "0.3"
2019-10-07 20:11:39 -07:00
pairing = { version = "0.15.0", path = "../pairing" }
2018-10-12 10:22:58 -07:00
protobuf = "2"
2019-10-07 20:11:39 -07:00
zcash_primitives = { version = "0.1.0", path = "../zcash_primitives" }
2018-10-12 10:22:58 -07:00
[build-dependencies]
protobuf-codegen-pure = "2"
[dev-dependencies]
2019-07-14 04:19:01 -07:00
rand_core = "0.5"
rand_os = "0.2"
2019-07-14 04:19:01 -07:00
rand_xorshift = "0.2"
2019-10-07 20:11:39 -07:00
[badges]
maintenance = { status = "actively-developed" }