29 lines
741 B
TOML
29 lines
741 B
TOML
[package]
|
|
authors = ["The Hush Developers", "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 = "GPLv3 or later"
|
|
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" }
|
|
ff = { path = "../ff" }
|
|
rand = "0.4"
|
|
digest = "0.7"
|
|
byteorder = "1"
|
|
|
|
[dependencies.blake2-rfc]
|
|
git = "https://git.hush.is/hush/blake2-rfc"
|
|
rev = "04e586d640f87f35e7c07100508216ca7797195c"
|
|
|
|
[dev-dependencies]
|
|
hex-literal = "0.1"
|
|
rust-crypto = "0.2"
|