sapling-crypto/Cargo.toml

29 lines
633 B
TOML
Raw Normal View History

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"
[dependencies.pairing]
version = "~0.13.2"
features = ["expose-arith"]
2017-11-13 00:54:13 -08:00
[dependencies]
rand = "0.3"
blake2 = "0.7"
digest = "0.7"
bellman = "0.0.8"
2017-11-13 00:54:13 -08:00
byteorder = "1"
[dev-dependencies]
hex-literal = "0.1"
[features]
default = ["u128-support"]
u128-support = ["pairing/u128-support"]