librustzcash/zcash_client_backend/Cargo.toml

63 lines
1.7 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"
2022-05-06 13:03:49 -07:00
bls12_381 = "0.7"
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"
2022-05-06 13:03:49 -07:00
ff = "0.12"
group = "0.12"
2020-06-25 03:23:42 -07:00
hex = "0.4"
hdwallet = { version = "0.3.1", optional = true }
2022-05-06 13:03:49 -07:00
jubjub = "0.9"
log = "0.4"
2021-08-23 12:15:51 -07:00
nom = "7"
2022-06-24 09:21:44 -07:00
orchard = "0.2"
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 }
2022-03-21 10:24:31 -07:00
secp256k1 = { version = "0.21", optional = true }
sha2 = { version = "0.10.1", optional = true }
subtle = "2.2.3"
time = "0.2"
zcash_address = { version = "0.1", path = "../components/zcash_address" }
2021-12-17 07:21:09 -08:00
zcash_note_encryption = { version = "0.1", path = "../components/zcash_note_encryption" }
2022-06-24 09:29:22 -07:00
zcash_primitives = { version = "0.7", 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"
2022-06-24 09:33:38 -07:00
zcash_proofs = { version = "0.7", 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",
"orchard/test-dependencies",
"zcash_primitives/test-dependencies",
]
[lib]
bench = false
2019-10-07 20:11:39 -07:00
[badges]
maintenance = { status = "actively-developed" }