2017-03-17 17:07:23 +00:00
|
|
|
[package]
|
|
|
|
name = "librustzcash"
|
|
|
|
version = "0.1.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>"
|
2017-12-30 22:36:23 +00:00
|
|
|
]
|
2017-03-17 17:07:23 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "rustzcash"
|
|
|
|
path = "src/rustzcash.rs"
|
|
|
|
crate-type = ["staticlib"]
|
|
|
|
|
|
|
|
[dependencies]
|
2018-08-28 22:06:15 +00:00
|
|
|
bellman = { path = "../bellman" }
|
2017-03-17 17:07:23 +00:00
|
|
|
libc = "0.2"
|
2018-08-28 22:06:15 +00:00
|
|
|
pairing = { path = "../pairing" }
|
2018-04-13 00:38:25 +00:00
|
|
|
lazy_static = "1"
|
2018-05-08 22:58:43 +00:00
|
|
|
byteorder = "1"
|
|
|
|
rand = "0.4"
|
2018-08-28 22:06:15 +00:00
|
|
|
sapling-crypto = { path = "../sapling-crypto" }
|
2018-10-11 19:57:50 +00:00
|
|
|
zip32 = { path = "../zip32" }
|
2018-04-10 00:28:42 +00:00
|
|
|
|
2017-12-30 22:36:23 +00:00
|
|
|
[dependencies.blake2-rfc]
|
|
|
|
git = "https://github.com/gtank/blake2-rfc"
|
|
|
|
rev = "7a5b5fc99ae483a0043db7547fb79a6fa44b88a9"
|