Implementation of fundamental circuitry and primitive Jubjub curve arithmetic.

This commit is contained in:
Sean Bowe
2017-11-22 21:57:00 -07:00
parent 35314c8771
commit 86619c7334
11 changed files with 4088 additions and 5 deletions

View File

@@ -8,9 +8,16 @@ name = "sapling"
repository = "https://github.com/zcash/sapling"
version = "0.0.1"
[dependencies]
bellman = "0.0.5"
[dependencies.pairing]
version = "0.13"
features = ["u128-support"]
version = "~0.13.2"
features = ["expose-arith"]
[dependencies]
rand = "0.3"
blake2 = "0.7"
digest = "0.7"
bellman = "0.0.6"
[features]
default = ["u128-support"]
u128-support = ["pairing/u128-support"]