mirror of
https://github.com/Qortal/pirate-librustzcash.git
synced 2025-02-12 10:05:47 +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.
27 lines
640 B
TOML
27 lines
640 B
TOML
[package]
|
|
authors = ["Sean Bowe <sean@z.cash>"]
|
|
description = "Cryptographic library for Zcash Sapling"
|
|
documentation = "https://github.com/zcash-hackworks/sapling"
|
|
homepage = "https://github.com/zcash-hackworks/sapling"
|
|
license = "MIT/Apache-2.0"
|
|
name = "sapling-crypto"
|
|
repository = "https://github.com/zcash-hackworks/sapling"
|
|
version = "0.0.1"
|
|
|
|
[dependencies.pairing]
|
|
path = "../pairing"
|
|
features = ["expose-arith"]
|
|
|
|
[dependencies]
|
|
bellman = { path = "../bellman" }
|
|
blake2b_simd = "0.5"
|
|
blake2s_simd = "0.5"
|
|
ff = { path = "../ff" }
|
|
rand = "0.4"
|
|
digest = "0.7"
|
|
byteorder = "1"
|
|
|
|
[dev-dependencies]
|
|
hex-literal = "0.1"
|
|
rust-crypto = "0.2"
|