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"
|
2017-12-30 22:36:23 +00:00
|
|
|
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"
|
2019-08-02 13:57:34 +00:00
|
|
|
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" }
|
2019-06-04 12:15:12 +00:00
|
|
|
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" }
|
2018-04-13 00:38:25 +00:00
|
|
|
lazy_static = "1"
|
2019-10-04 06:50:01 +00:00
|
|
|
rand_core = "0.5.1"
|
2019-12-04 21:24:26 +00:00
|
|
|
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" }
|