2017-11-13 08:54:13 +00:00
|
|
|
[package]
|
|
|
|
authors = ["Sean Bowe <sean@z.cash>"]
|
|
|
|
description = "Cryptographic library for Zcash Sapling"
|
2017-12-06 17:10:56 +00:00
|
|
|
documentation = "https://github.com/zcash-hackworks/sapling"
|
|
|
|
homepage = "https://github.com/zcash-hackworks/sapling"
|
2017-11-13 08:54:13 +00:00
|
|
|
license = "MIT/Apache-2.0"
|
2017-12-06 17:10:56 +00:00
|
|
|
name = "sapling-crypto"
|
|
|
|
repository = "https://github.com/zcash-hackworks/sapling"
|
2017-11-13 08:54:13 +00:00
|
|
|
version = "0.0.1"
|
|
|
|
|
2017-11-23 04:57:00 +00:00
|
|
|
[dependencies.pairing]
|
2018-03-05 05:25:04 +00:00
|
|
|
version = "0.14"
|
2017-11-23 04:57:00 +00:00
|
|
|
features = ["expose-arith"]
|
|
|
|
|
2017-11-13 08:54:13 +00:00
|
|
|
[dependencies]
|
2018-03-05 05:25:04 +00:00
|
|
|
rand = "0.4"
|
2017-11-23 04:57:00 +00:00
|
|
|
blake2 = "0.7"
|
|
|
|
digest = "0.7"
|
2018-03-05 05:25:04 +00:00
|
|
|
bellman = "0.0.9"
|
2017-11-13 08:54:13 +00:00
|
|
|
|
2018-02-24 15:01:16 +00:00
|
|
|
byteorder = "1"
|
|
|
|
|
2018-02-24 21:11:01 +00:00
|
|
|
[dev-dependencies]
|
|
|
|
hex-literal = "0.1"
|
|
|
|
|
2017-11-23 04:57:00 +00:00
|
|
|
[features]
|
|
|
|
default = ["u128-support"]
|
|
|
|
u128-support = ["pairing/u128-support"]
|