2017-11-13 00:54:13 -08:00
|
|
|
[package]
|
|
|
|
authors = ["Sean Bowe <sean@z.cash>"]
|
|
|
|
description = "Cryptographic library for Zcash Sapling"
|
2017-12-06 09:10:56 -08:00
|
|
|
documentation = "https://github.com/zcash-hackworks/sapling"
|
|
|
|
homepage = "https://github.com/zcash-hackworks/sapling"
|
2017-11-13 00:54:13 -08:00
|
|
|
license = "MIT/Apache-2.0"
|
2017-12-06 09:10:56 -08:00
|
|
|
name = "sapling-crypto"
|
|
|
|
repository = "https://github.com/zcash-hackworks/sapling"
|
2017-11-13 00:54:13 -08:00
|
|
|
version = "0.0.1"
|
|
|
|
|
2017-11-22 20:57:00 -08:00
|
|
|
[dependencies.pairing]
|
|
|
|
version = "~0.13.2"
|
|
|
|
features = ["expose-arith"]
|
|
|
|
|
2017-11-13 00:54:13 -08:00
|
|
|
[dependencies]
|
2017-11-22 20:57:00 -08:00
|
|
|
rand = "0.3"
|
|
|
|
blake2 = "0.7"
|
|
|
|
digest = "0.7"
|
|
|
|
bellman = "0.0.6"
|
2017-11-13 00:54:13 -08:00
|
|
|
|
2017-11-22 20:57:00 -08:00
|
|
|
[features]
|
|
|
|
default = ["u128-support"]
|
|
|
|
u128-support = ["pairing/u128-support"]
|