librustzcash/zcash_extensions/Cargo.toml

27 lines
747 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]
2021-12-17 14:26:13 -08:00
blake2b_simd = "1"
2022-06-24 09:29:22 -07:00
zcash_primitives = { version = "0.7", path = "../zcash_primitives", features = ["zfuture" ] }
[dev-dependencies]
2022-05-06 13:03:49 -07:00
ff = "0.12"
jubjub = "0.9"
2021-01-26 14:48:11 -08:00
rand_core = "0.6"
zcash_address = { version = "0.1", path = "../components/zcash_address" }
2022-06-24 09:33:38 -07:00
zcash_proofs = { version = "0.7", path = "../zcash_proofs" }
[features]
transparent-inputs = []
[lib]
bench = false