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