forked from risc0/risc0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
50 lines (46 loc) · 805 Bytes
/
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
[workspace]
resolver = "2"
members = [
"bevy",
"browser-verify",
"chess",
"chess/core",
"composition",
"cycle-counter",
"digital-signature",
"digital-signature/core",
"ecdsa",
"groth16-verifier",
"hello-world",
"json",
"json/core",
"jwt-validator",
"jwt-validator/core",
"password-checker",
"password-checker/core",
"profiling",
"prorata",
"prorata/core",
"sha",
"smartcore-ml",
"voting-machine",
"voting-machine/core",
"waldo",
"waldo/core",
"wasm",
"wordle",
"wordle/core",
"xgboost",
"zkevm-demo",
"zkevm-demo/core",
]
# Always optimize; otherwise tests take excessively long.
[profile.dev]
opt-level = 3
[profile.dev.build-override]
opt-level = 3
[profile.release]
debug = 1
lto = true
[profile.release.build-override]
opt-level = 3