-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
92 lines (83 loc) · 2.75 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
83
84
85
86
87
88
89
90
91
92
[workspace]
members = [
"uzkge",
"shuffle",
"shuffle/wasm",
"matchmaking",
]
resolver = "2"
[workspace.package]
version = "0.1.2"
edition = "2021"
authors = ["Zypher <[email protected]>"]
readme = "README.md"
homepage = "https://zypher.network"
repository = "https://github.com/zypher-game/uzkge"
categories = ["cryptography"]
keywords = ["zkp", "plonk", "game"]
description = "App-specific PlonK with various gadgets & primitives"
license = "GPL-3.0-only"
[workspace.dependencies]
uzkge = { version = "0.1", path = "./uzkge", default-features = false }
zshuffle = { version = "0.1", path = "./shuffle", default-features = false }
zshuffle-wasm = { version = "0.1", path = "./shuffle/wasm", default-features = false }
zmatchmaking = { version = "0.1", path = "./matchmaking", default-features = false }
ark-ec = { version = "0.4", default-features = false, package = "ark-ec-zypher" }
ark-ff = { version = "0.4", default-features = false, features = ["asm"], package = "ark-ff-zypher" }
ark-poly = { version = "0.4", default-features = false, package = "ark-poly-zypher" }
ark-serialize = { version = "0.4", default-features = false, features = ["derive"], package = "ark-serialize-zypher" }
ark-std = { version = "0.4", default-features = false, package = "ark-std-zypher" }
ark-bn254 = { version = "0.4", default-features = false, features = ["curve"], package = "ark-bn254-zypher" }
ark-ed-on-bn254 = { version = "0.4", default-features = false, package = "ark-ed-on-bn254-zypher" }
ark-relations = { version = "0.4", default-features = false, package = "ark-relations-zypher" }
ark-r1cs-std = { version = "0.4", default-features = false, package = "ark-r1cs-std-zypher" }
ark-snark = { version = "0.4", default-features = false, package = "ark-snark-zypher" }
ark-groth16 = { version = "0.4", default-features = false, package = "ark-groth16-zypher" }
bincode = "1.3"
hex = "0.4"
itertools = "0.12"
lazy_static = "1.4"
num-bigint = "0.4"
num-integer = "0.1"
once_cell = "1.19"
rand_chacha = "0.3"
rand_core = "0.6"
rayon = "1.7"
serde = { version = "1.0", features = ["derive"] }
serde_bytes = "0.11"
sha3 = "0.10"
structopt = "0.3"
tera = "1.19"
thiserror = "1.0"
# wasm
getrandom = { version = "0.2", features = ["js"] }
serde-wasm-bindgen = "0.4"
wasm-bindgen = "0.2"
console_error_panic_hook = "0.1"
wasm-bindgen-test = "0.3"
web-sys = { version = "0.3", features = ["console"] }
[profile.release]
opt-level = 3
lto = "thin"
incremental = true
panic = "abort"
[profile.bench]
opt-level = 3
debug = false
rpath = false
lto = "thin"
incremental = true
debug-assertions = false
[profile.dev]
opt-level = 3
lto = "thin"
incremental = true
debug-assertions = true
debug = true
panic = "abort"
[profile.test]
opt-level = 2
lto = "off"
incremental = true
debug-assertions = true
debug = true