forked from risc0/zirgen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
56 lines (42 loc) · 1.37 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
[workspace]
resolver = "2"
members = ["zirgen/circuit/fib", "zirgen/dsl"]
[workspace.dependencies.risc0-binfmt]
git = "https://github.com/risc0/risc0.git"
rev = "bc1f4ac5bcb07731641b6fc6dc13fecb121d1276"
[workspace.dependencies.risc0-build]
git = "https://github.com/risc0/risc0.git"
rev = "bc1f4ac5bcb07731641b6fc6dc13fecb121d1276"
[workspace.dependencies.risc0-core]
git = "https://github.com/risc0/risc0.git"
rev = "bc1f4ac5bcb07731641b6fc6dc13fecb121d1276"
default-features = false
[workspace.dependencies.risc0-zkp]
git = "https://github.com/risc0/risc0.git"
rev = "bc1f4ac5bcb07731641b6fc6dc13fecb121d1276"
default-features = false
[workspace.dependencies.risc0-zkvm]
git = "https://github.com/risc0/risc0.git"
rev = "bc1f4ac5bcb07731641b6fc6dc13fecb121d1276"
default-features = false
[workspace.dependencies.risc0-circuit-recursion]
git = "https://github.com/risc0/risc0.git"
rev = "bc1f4ac5bcb07731641b6fc6dc13fecb121d1276"
default-features = false
[workspace.dependencies.risc0-zkvm-platform]
git = "https://github.com/risc0/risc0.git"
rev = "bc1f4ac5bcb07731641b6fc6dc13fecb121d1276"
[workspace.dependencies.zirgen-dsl]
path = "zirgen/dsl"
[profile.bench]
lto = true
# 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