mirror of
https://github.com/Qortal/pirate-librustzcash.git
synced 2025-01-31 15:52:14 +00:00
2bafc688ff
Checking for spent notes in a block is still not completely constant time, due to filtering out negative results of the constant-time comparison. Part of #84.
25 lines
428 B
TOML
25 lines
428 B
TOML
[package]
|
|
name = "zcash_client_backend"
|
|
version = "0.0.0"
|
|
authors = [
|
|
"Jack Grigg <jack@z.cash>",
|
|
]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
bech32 = "0.7"
|
|
ff = { path = "../ff" }
|
|
hex = "0.3"
|
|
pairing = { path = "../pairing" }
|
|
protobuf = "2"
|
|
subtle = "2"
|
|
zcash_primitives = { path = "../zcash_primitives" }
|
|
|
|
[build-dependencies]
|
|
protobuf-codegen-pure = "2"
|
|
|
|
[dev-dependencies]
|
|
rand_core = "0.5"
|
|
rand_os = "0.2"
|
|
rand_xorshift = "0.2"
|