2018-08-23 15:15:22 -07:00
|
|
|
[package]
|
|
|
|
name = "zcash_primitives"
|
2019-10-07 20:07:30 -07:00
|
|
|
description = "Rust implementations of the Zcash primitives"
|
2020-09-09 13:41:19 -07:00
|
|
|
version = "0.4.0"
|
2018-08-23 15:15:22 -07:00
|
|
|
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"
|
2019-08-02 06:57:34 -07:00
|
|
|
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"
|
2018-08-23 15:15:22 -07:00
|
|
|
|
2020-08-22 22:56:03 -07:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
|
2018-08-23 15:15:22 -07:00
|
|
|
[dependencies]
|
2020-08-16 03:16:23 -07:00
|
|
|
aes = "0.5"
|
2020-09-08 16:07:51 -07:00
|
|
|
bitvec = "0.18"
|
2019-06-04 05:15:12 -07:00
|
|
|
blake2b_simd = "0.5"
|
2019-08-06 02:46:40 -07:00
|
|
|
blake2s_simd = "0.5"
|
2020-09-09 08:51:53 -07:00
|
|
|
bls12_381 = "0.3.1"
|
2018-08-23 15:29:42 -07:00
|
|
|
byteorder = "1"
|
2020-06-25 04:50:39 -07:00
|
|
|
crypto_api_chachapoly = "0.4"
|
2020-07-09 15:24:54 -07:00
|
|
|
equihash = { version = "0.1", path = "../components/equihash" }
|
2020-09-08 16:07:51 -07:00
|
|
|
ff = "0.8"
|
2020-08-16 03:16:23 -07:00
|
|
|
fpe = "0.3"
|
2020-09-08 16:07:51 -07:00
|
|
|
group = "0.8"
|
2020-06-25 03:23:42 -07:00
|
|
|
hex = "0.4"
|
2020-09-09 08:51:53 -07:00
|
|
|
jubjub = "0.5.1"
|
2018-08-23 15:35:39 -07:00
|
|
|
lazy_static = "1"
|
2019-08-18 15:56:15 -07:00
|
|
|
log = "0.4"
|
2018-11-20 05:37:21 -08:00
|
|
|
rand = "0.7"
|
2019-10-03 23:50:01 -07:00
|
|
|
rand_core = "0.5.1"
|
2020-06-25 03:14:10 -07:00
|
|
|
ripemd160 = { version = "0.9", optional = true }
|
2020-09-08 16:38:54 -07:00
|
|
|
secp256k1 = { version = "0.19", optional = true }
|
2020-06-25 03:14:10 -07:00
|
|
|
sha2 = "0.9"
|
2019-12-12 15:15:48 -08:00
|
|
|
subtle = "2.2.1"
|
2019-05-04 09:47:18 -07:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2019-12-19 14:11:11 -08:00
|
|
|
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
|
|
|
|
2019-07-31 08:20:13 -07:00
|
|
|
[features]
|
|
|
|
transparent-inputs = ["ripemd160", "secp256k1"]
|
|
|
|
|
2019-12-19 14:11:11 -08:00
|
|
|
[[bench]]
|
|
|
|
name = "pedersen_hash"
|
|
|
|
harness = false
|
|
|
|
|
2019-10-07 20:07:30 -07:00
|
|
|
[badges]
|
|
|
|
maintenance = { status = "actively-developed" }
|