forked from risc0/zeth
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
39 lines (32 loc) · 1006 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
[workspace]
resolver = "2"
members = ["lib", "primitives", "raiko-guest", "raiko-host", "sgx-ra"]
# 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
[patch.crates-io]
# use optimized risc0 circuit
revm = { git = "https://github.com/johntaiko/revm", branch = "feat/taiko" }
revm-primitives = { git = "https://github.com/johntaiko/revm", branch = "feat/taiko" }
[workspace.dependencies]
bonsai-sdk = "0.4"
hashbrown = { version = "0.14", features = ["inline-more"] }
risc0-build = "0.18"
risc0-zkvm = { version = "0.18", default-features = false }
revm = { version = "3.5", default-features = false, features = [
"std",
"serde",
"taiko",
"optional_no_base_fee",
"optional_balance_check",
] }
revm-primitives = { version = "1.3", default_features = false, features = [
"taiko",
] }