pirate-librustzcash/librustzcash/Cargo.toml

30 lines
622 B
TOML
Raw Normal View History

2017-03-17 17:07:23 +00:00
[package]
name = "librustzcash"
version = "0.1.0"
authors = [
"Sean Bowe <ewillbefull@gmail.com>",
"Jack Grigg <jack@z.cash>",
2018-06-02 02:03:51 +00:00
"Jay Graber <jay@z.cash>",
"Simon Liu <simon@z.cash>"
2019-08-21 00:31:20 +00:00
]
edition = "2018"
2017-03-17 17:07:23 +00:00
[lib]
name = "rustzcash"
path = "src/rustzcash.rs"
crate-type = ["staticlib"]
[dependencies]
bellman = { path = "../bellman" }
blake2b_simd = "0.5"
blake2s_simd = "0.5"
ff = { path = "../ff" }
2017-03-17 17:07:23 +00:00
libc = "0.2"
pairing = { path = "../pairing" }
lazy_static = "1"
byteorder = "1"
2019-07-14 11:19:01 +00:00
rand_core = "0.5"
rand_os = "0.2"
zcash_primitives = { path = "../zcash_primitives" }
zcash_proofs = { path = "../zcash_proofs" }