-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
74 lines (57 loc) · 1.86 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[package]
name = "ring-vrf"
version = "0.0.1"
description = "Ring VRF implementation using zkSNARKs."
authors = ["Sergey Vasilyev <[email protected]>", "Jeff Burdges <[email protected]>", "Wei Tang <[email protected]>"]
edition = "2018"
license = "MIT"
[dependencies]
ff = "0.8"
group = "0.8"
pairing = "0.18"
jubjub = "0.5"
bls12_381 = "0.3"
# bellman = { git = "https://github.com/w3f/bellman.git", branch="pub-multiexp", version = "0.8", default-features = false, features = ["groth16"] }
bellman = { git = "https://github.com/w3f/bellman.git", branch = "neptune-bis", version = "0.8", default-features = false, features = ["groth16"] }
zcash_primitives = { git = "https://github.com/zcash/librustzcash", version = "0.4"}
zcash_proofs = { git = "https://github.com/zcash/librustzcash", version = "0.4" }
neptune = { git = "https://github.com/w3f/neptune", branch = "librustzcash-bis" }
typenum = "1.11.2"
bench-utils = { git = "https://github.com/scipr-lab/zexe", features = ["print-trace"]}
[patch.crates-io]
bellman = { git = "https://github.com/w3f/bellman.git", branch="neptune-bis" }
[dependencies.arrayref]
version = "0.3.5"
default-features = false
[dependencies.arrayvec]
version = "0.5.1"
default-features = false
[dependencies.digest]
version = "0.8"
default-features = false
# [dependencies.subtle]
# version = "2.2.1"
# default-features = false
[dependencies.merlin]
version = "2.0"
# features = ["debug-transcript"]
default-features = false
[dependencies.rand_core]
version = "0.5.1"
# default-features = false
[dependencies.rand_chacha]
version = "0.2" # ?
default-features = false
optional = true
[dependencies.lazy_static]
version = "1.4"
default-features = false
[dependencies.zeroize]
version = "1.0.0"
default-features = false
features = ["zeroize_derive"]
[dev-dependencies]
rand_xorshift = "0.2"
rand_chacha = "0.2"
[features]
default = ["rand_chacha"] # "std",