-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
51 lines (46 loc) · 1.12 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
[package]
name = "zmatchmaking"
description = "Mathmaking for PvP games with provable fairness and randomness"
keywords = ["zkp", "matchmaking", "game"]
version.workspace = true
edition.workspace = true
authors.workspace = true
homepage.workspace = true
repository.workspace = true
categories.workspace = true
license.workspace = true
[[bin]]
name = "gen-params"
path = "src/gen_params/setup.rs"
required-features = ["gen"]
[dependencies]
uzkge.workspace = true
ark-ff.workspace = true
ark-std.workspace = true
ark-serialize.workspace = true
ark-bn254.workspace = true
bincode.workspace = true
num-bigint.workspace = true
num-integer.workspace = true
rand_chacha.workspace = true
serde.workspace = true
rayon = { workspace = true, optional = true}
structopt = { workspace = true, optional = true}
[dev-dependencies]
rand_core = { workspace = true, features = ["getrandom"] }
[features]
default = ["std", "parallel"]
std = [
"ark-std/std",
"ark-ff/std",
"ark-bn254/std",
"uzkge/std"
]
parallel = [
"rayon",
"ark-std/parallel",
"ark-ff/parallel",
"uzkge/parallel"
]
no_vk = []
gen = ["uzkge/gen", "parallel", "structopt"]