librustzcash/zcash_extensions/Cargo.toml

28 lines
763 B
TOML
Raw Normal View History

[package]
name = "zcash_extensions"
description = "Zcash Extension implementations & consensus node integration layer."
version = "0.0.0"
authors = ["Jack Grigg <jack@z.cash>", "Kris Nuttycombe <kris@z.cash>"]
homepage = "https://github.com/zcash/librustzcash"
repository = "https://github.com/zcash/librustzcash"
license = "MIT OR Apache-2.0"
edition = "2018"
[dependencies]
blake2b_simd = "0.5"
zcash_primitives = { version = "0.5", path = "../zcash_primitives", features = ["zfuture" ] }
[dev-dependencies]
2021-09-09 09:45:50 -07:00
ff = "0.11"
jubjub = "0.8"
orchard = "0.0"
2021-01-26 14:48:11 -08:00
rand_core = "0.6"
2021-03-25 22:53:42 -07:00
zcash_proofs = { version = "0.5", path = "../zcash_proofs" }
secp256k1 = { version = "0.20", features = ["rand", "bitcoin_hashes"] }
[features]
transparent-inputs = []
[lib]
bench = false