forked from dalek-cryptography/bulletproofs
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
81 lines (72 loc) · 2.01 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
73
74
75
76
77
78
79
80
81
[package]
name = "mpc-bulletproof"
version = "0.1.0"
authors = [
"Joey Kraut <[email protected]>",
"Andrew Kirillov <[email protected]>",
]
readme = "README.md"
license = "MIT"
repository = "https://github.com/renegade-fi/mpc-bulletproof"
categories = ["cryptography"]
keywords = ["cryptography", "crypto", "stark", "zero-knowledge", "bulletproofs"]
description = "A pure-Rust implementation of collaboratively proved Bulletproofs over the Stark curve."
edition = "2021"
[dependencies]
ark-ff = "0.4"
ark-serialize = "0.4"
futures = "0.3"
futures-util = "0.3"
mpc-stark = "0.2"
sha3 = { version = "0.8", default-features = false }
digest = { version = "0.8", default-features = false }
rand_core = { version = "0.5", default-features = false, features = ["alloc"] }
rand = { version = "0.8", default-features = false, optional = true }
rayon = "1"
byteorder = { version = "1", default-features = false }
num-bigint = "0.4"
itertools = "0.10"
serde = { version = "1", default-features = false, features = ["alloc"] }
serde_derive = { version = "1", default-features = false }
thiserror = { version = "1", optional = true }
tokio = { version = "1.12", features = ["macros", "rt-multi-thread"] }
merlin = { git = "https://github.com/renegade-fi/merlin" }
unzip-n = "0.1"
[dev-dependencies]
async-std = "1.12"
async-trait = "0.1"
bincode = "1"
clap = { version = "3.2.8", features = ["derive"] }
colored = "2"
criterion = "0.3"
dns-lookup = "1.0"
hex = "0.3"
inventory = "0.3"
rand_chacha = "0.2"
tokio = { version = "1.12", features = ["macros", "rt-multi-thread"] }
lazy_static = "1.4"
[features]
default = ["std", "multiprover"]
benchmarking = []
std = ["rand", "rand/std", "thiserror"]
multiprover = []
integration_test = []
[[test]]
name = "r1cs"
[[test]]
name = "integration"
path = "integration/main.rs"
harness = false
[[bench]]
name = "generators"
harness = false
[[bench]]
name = "shuffle"
harness = false
required-features = ["multiprover"]
[[bench]]
name = "r1cs"
harness = false
[[bench]]
name = "inner_product"
harness = false