forked from risc0/zirgen
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (24 loc) · 667 Bytes
/
Cargo.toml
File metadata and controls
31 lines (24 loc) · 667 Bytes
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
[workspace]
resolver = "2"
members = ["zirgen/circuit/fib", "zirgen/dsl"]
[workspace.dependencies]
risc0-zirgen-dsl = { path = "zirgen/dsl" }
sppark = "0.1.10"
[workspace.dependencies.risc0-core]
git = "https://github.com/risc0/risc0.git"
rev = "17ed98c3243258ad912fd52a289fef6725f17c90"
default-features = false
[workspace.dependencies.risc0-zkp]
git = "https://github.com/risc0/risc0.git"
rev = "17ed98c3243258ad912fd52a289fef6725f17c90"
default-features = false
[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