librustzcash/zcash_primitives/Cargo.toml

51 lines
1.2 KiB
TOML

[package]
name = "zcash_primitives"
description = "Rust implementations of the Zcash primitives"
version = "0.2.0"
authors = [
"Jack Grigg <jack@z.cash>",
]
homepage = "https://github.com/zcash/librustzcash"
repository = "https://github.com/zcash/librustzcash"
readme = "README.md"
license = "MIT OR Apache-2.0"
edition = "2018"
[dependencies]
aes = "0.5"
blake2b_simd = "0.5"
blake2s_simd = "0.5"
bls12_381 = { version = "0.1", path = "../bls12_381" }
byteorder = "1"
crypto_api_chachapoly = "0.4"
equihash = { version = "0.1", path = "../components/equihash" }
ff = { version = "0.6", path = "../ff" }
fpe = "0.3"
group = { version = "0.6", path = "../group" }
hex = "0.4"
jubjub = { version = "0.3", path = "../jubjub" }
lazy_static = "1"
log = "0.4"
pairing = { version = "0.16", path = "../pairing" }
rand = "0.7"
rand_core = "0.5.1"
ripemd160 = { version = "0.9", optional = true }
secp256k1 = { version = "0.17", optional = true }
sha2 = "0.9"
subtle = "2.2.1"
[dev-dependencies]
criterion = "0.3"
hex-literal = "0.2"
rand_xorshift = "0.2"
[features]
transparent-inputs = ["ripemd160", "secp256k1"]
[[bench]]
name = "pedersen_hash"
harness = false
[badges]
maintenance = { status = "actively-developed" }