pirate-librustzcash/librustzcash/Cargo.toml

37 lines
1.0 KiB
TOML
Raw Normal View History

2017-03-17 17:07:23 +00:00
[package]
name = "librustzcash"
2019-10-08 03:12:50 +00:00
description = "Rust FFI used by the zcashd binary. Not an official API."
version = "0.2.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
]
2019-10-08 03:12:50 +00:00
homepage = "https://github.com/zcash/librustzcash"
repository = "https://github.com/zcash/librustzcash"
readme = "README.md"
2019-10-08 03:12:50 +00:00
license = "MIT OR Apache-2.0"
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]
2019-10-08 03:12:50 +00:00
bellman = { version = "0.2.0", path = "../bellman" }
blake2b_simd = "0.5"
blake2s_simd = "0.5"
2019-10-08 03:12:50 +00:00
ff = { version = "0.5.0", path = "../ff" }
2017-03-17 17:07:23 +00:00
libc = "0.2"
2019-10-08 03:12:50 +00:00
pairing = { version = "0.15.0", path = "../pairing" }
lazy_static = "1"
rand_core = "0.5.1"
zcash_mmr = { git = "https://github.com/nikvolf/zcash-mmr" }
2019-10-08 03:12:50 +00:00
zcash_primitives = { version = "0.1.0", path = "../zcash_primitives" }
zcash_proofs = { version = "0.1.0", path = "../zcash_proofs" }
[badges]
maintenance = { status = "deprecated" }