-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
82 lines (61 loc) · 2.44 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
82
[package]
name = "zk-mpc"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ark-ec = { path = "arkworks/algebra/ec", version = "0.3.0" }
ark-ff = { path = "arkworks/algebra/ff", version = "0.3.0" }
ark-poly = { path = "arkworks/algebra/poly", version = "0.3.0" }
ark-serialize = { path = "arkworks/algebra/serialize", version = "0.3.0" }
ark-crypto-primitives = { path = "arkworks/crypto-primitives", version = "0.3.0", features = ["r1cs"] }
ark-bls12-377 = { path = "arkworks/curves/bls12_377", version = "0.3.0", features = ["r1cs", "curve"] }
ark-ed-on-bls12-377 = { path = "arkworks/curves/ed_on_bls12_377", version = "0.3.0", features = ["r1cs"] }
ark-mnt4-753 = { path = "arkworks/curves/mnt4_753", version = "0.3.0" }
ark-groth16 = { path = "arkworks/groth16", version = "0.3.0" }
ark-marlin = { path = "arkworks/marlin", version = "0.3.0", default-features = false, features = [ "std" ] }
ark-poly-commit = { path = "arkworks/poly-commit", version = "0.3.0" }
ark-r1cs-std = { path = "arkworks/r1cs-std", version = "0.3.0" }
ark-relations = { path = "arkworks/snark/relations", version = "0.3.0" }
ark-snark = { path = "arkworks/snark/snark", version = "0.3.0" }
ark-std = { path = "arkworks/std", version = "0.3.0", features = ["std", "print-trace"] }
rand = "0.8.5"
rand_distr = "0.4.3"
num-bigint = { version = "0.4.3", features = ["rand"] }
num-integer = "0.1"
num-traits = "0.2.14"
structopt = "0.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
hex = "0.4.3"
blake2 = "0.9"
derivative = { version = "2.0", features = ["use_core"]}
zeroize = { version = "1", default-features = false, features = ["zeroize_derive"] }
mpc-algebra = { path = "mpc-algebra", version = "0.1.0" }
mpc-net = { path = "mpc-net", version = "0.1.0" }
mpc-trait = { path = "mpc-trait", version = "0.1.0" }
itertools = "0.13.0"
nalgebra = "0.33.0"
[dev-dependencies]
criterion = { version = "0.4", features = ["html_reports"] }
[[bench]]
name = "preprocessing"
harness = false
[[bin]]
name = "main"
path = "src/main.rs"
[[example]]
name = "bin-test-marlin"
path = "examples/bin_test_marlin.rs"
[[example]]
name = "bin-test-groth16"
path = "examples/bin_test_groth16.rs"
[[example]]
name = "online"
path = "examples/online.rs"
[[example]]
name = "bin-werewolf"
path = "examples/bin_werewolf.rs"
[[example]]
name = "werewolf-cli"
path = "examples/werewolf_cli/main.rs"