mirror of
https://github.com/Qortal/pirate-librustzcash.git
synced 2025-02-23 22:15:52 +00:00
The primary reason for migrating is that these crates provide APIs for setting the personalisation string. This enables us to depend solely on published crates, and thus publish our own crates. The SIMD implementations are ported from libsodium. Closes #67.
29 lines
636 B
TOML
29 lines
636 B
TOML
[package]
|
|
name = "librustzcash"
|
|
version = "0.1.0"
|
|
authors = [
|
|
"Sean Bowe <ewillbefull@gmail.com>",
|
|
"Jack Grigg <jack@z.cash>",
|
|
"Jay Graber <jay@z.cash>",
|
|
"Simon Liu <simon@z.cash>"
|
|
]
|
|
|
|
[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" }
|
|
libc = "0.2"
|
|
pairing = { path = "../pairing" }
|
|
lazy_static = "1"
|
|
byteorder = "1"
|
|
rand = "0.4"
|
|
sapling-crypto = { path = "../sapling-crypto" }
|
|
zcash_primitives = { path = "../zcash_primitives" }
|
|
zcash_proofs = { path = "../zcash_proofs" }
|