forked from risc0/risc0-foundry-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
23 lines (18 loc) · 751 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
[workspace]
members = ["methods", "relay"]
[workspace.dependencies]
risc0-build = { git = "https://github.com/risc0/risc0", branch = "release-0.17" }
risc0-zkvm = { git = "https://github.com/risc0/risc0", branch = "release-0.17", default-features = false }
bonsai-sdk = { git = "https://github.com/risc0/risc0", branch = "release-0.17" }
bonsai-ethereum-relay = { git = "https://github.com/risc0/risc0", branch = "release-0.17" }
methods = { path = "./methods", package = "bonsai-starter-methods" }
# Always optimize; building and running the guest takes much longer without optimization.
[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