librustzcash/zcash_client_backend/Cargo.toml

49 lines
1.2 KiB
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"
2021-03-25 22:54:42 -07:00
version = "0.5.0"
authors = [
"Jack Grigg <jack@z.cash>",
2021-04-08 09:12:47 -07:00
"Kris Nuttycombe <kris@electriccoin.co>"
]
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]
2021-03-25 17:31:20 -07:00
bech32 = "0.8"
2020-09-09 08:51:53 -07:00
bls12_381 = "0.3.1"
2021-01-26 15:03:30 -08:00
bs58 = { version = "0.4", features = ["check"] }
2021-01-26 15:01:05 -08:00
base64 = "0.13"
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"
2021-01-26 15:27:23 -08:00
nom = "6.1"
2021-01-19 11:59:18 -08:00
protobuf = "2.20"
rand_core = "0.5.1"
subtle = "2.2.3"
time = "0.2"
2021-03-25 22:50:56 -07:00
zcash_primitives = { version = "0.5", path = "../zcash_primitives" }
proptest = { version = "0.10.1", optional = true }
percent-encoding = "2.1.0"
2018-10-12 10:22:58 -07:00
[build-dependencies]
2021-01-19 11:59:18 -08:00
protobuf-codegen-pure = "2.20"
2018-10-12 10:22:58 -07:00
[dev-dependencies]
gumdrop = "0.8"
rand_core = "0.5.1"
2019-07-14 04:19:01 -07:00
rand_xorshift = "0.2"
tempfile = "3.1.0"
2021-03-25 22:56:07 -07:00
zcash_client_sqlite = { version = "0.3", path = "../zcash_client_sqlite" }
2021-03-25 22:53:42 -07:00
zcash_proofs = { version = "0.5", path = "../zcash_proofs" }
2019-10-07 20:11:39 -07:00
[features]
test-dependencies = ["proptest", "zcash_primitives/test-dependencies"]
2019-10-07 20:11:39 -07:00
[badges]
maintenance = { status = "actively-developed" }