librustzcash/zcash_primitives/Cargo.toml

47 lines
1011 B
TOML
Raw Normal View History

[package]
name = "zcash_primitives"
2019-10-07 20:07:30 -07:00
description = "Rust implementations of the Zcash primitives"
version = "0.2.0"
authors = [
"Jack Grigg <jack@z.cash>",
]
2019-10-07 20:07:30 -07:00
homepage = "https://github.com/zcash/librustzcash"
repository = "https://github.com/zcash/librustzcash"
readme = "README.md"
2019-10-07 20:07:30 -07:00
license = "MIT OR Apache-2.0"
2019-08-20 17:31:20 -07:00
edition = "2018"
[dependencies]
2019-07-22 15:51:32 -07:00
aes = "0.3"
blake2b_simd = "0.5"
blake2s_simd = "0.5"
byteorder = "1"
crypto_api_chachapoly = "0.2.1"
ff = { version = "0.6", path = "../ff" }
2019-07-22 15:51:32 -07:00
fpe = "0.2"
2018-10-11 15:16:48 -07:00
hex = "0.3"
2018-08-23 15:35:39 -07:00
lazy_static = "1"
log = "0.4"
pairing = { version = "0.16", path = "../pairing" }
2018-11-20 05:37:21 -08:00
rand = "0.7"
rand_core = "0.5.1"
ripemd160 = { version = "0.8", optional = true }
secp256k1 = { version = "=0.15.0", optional = true }
2018-12-03 04:54:11 -08:00
sha2 = "0.8"
2019-12-12 15:15:48 -08:00
subtle = "2.2.1"
2019-05-04 09:47:18 -07:00
[dev-dependencies]
criterion = "0.3"
2019-09-12 11:17:09 -07:00
hex-literal = "0.2"
2019-05-04 09:47:18 -07:00
rand_xorshift = "0.2"
2019-10-07 20:07:30 -07:00
[features]
transparent-inputs = ["ripemd160", "secp256k1"]
[[bench]]
name = "pedersen_hash"
harness = false
2019-10-07 20:07:30 -07:00
[badges]
maintenance = { status = "actively-developed" }