librustzcash/zcash_client_backend/Cargo.toml

57 lines
1.5 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"
2021-09-09 09:45:50 -07:00
bls12_381 = "0.6"
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"
2021-09-09 09:45:50 -07:00
ff = "0.11"
group = "0.11"
2020-06-25 03:23:42 -07:00
hex = "0.4"
hdwallet = { version = "0.3.0", optional = true }
2021-09-09 09:45:50 -07:00
jubjub = "0.8"
log = "0.4"
2021-08-23 12:15:51 -07:00
nom = "7"
percent-encoding = "2.1.0"
proptest = { version = "1.0.0", optional = true }
protobuf = "~2.27.1" # MSRV 1.52.1
2021-01-26 14:48:11 -08:00
rand_core = "0.6"
ripemd = { version = "0.1", optional = true }
secp256k1 = { version = "0.20", optional = true }
sha2 = { version = "0.10.1", optional = true }
subtle = "2.2.3"
time = "0.2"
2021-12-17 07:21:09 -08:00
zcash_note_encryption = { version = "0.1", path = "../components/zcash_note_encryption" }
2021-03-25 22:50:56 -07:00
zcash_primitives = { version = "0.5", path = "../zcash_primitives" }
2018-10-12 10:22:58 -07:00
[build-dependencies]
protobuf-codegen-pure = "~2.27.1" # MSRV 1.52.1
2018-10-12 10:22:58 -07:00
[dev-dependencies]
gumdrop = "0.8"
2021-01-26 14:48:11 -08:00
rand_xorshift = "0.3"
tempfile = "3.1.0"
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]
transparent-inputs = ["ripemd", "hdwallet", "sha2", "secp256k1", "zcash_primitives/transparent-inputs"]
test-dependencies = ["proptest", "zcash_primitives/test-dependencies"]
[lib]
bench = false
2019-10-07 20:11:39 -07:00
[badges]
maintenance = { status = "actively-developed" }