-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
40 lines (38 loc) · 1.42 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
[workspace]
resolver = "2"
members = [
"relayer",
"core",
"nexus/host",
"nexus/prover",
"nexus/prover/sp1-guest",
"nexus/prover/risc0-guest",
"examples/demo_rollup/host",
"examples/demo_rollup/methods",
"examples/demo_rollup/methods/guest",
"examples/demo_rollup/core",
"examples/mock_geth_adapter/host",
"examples/mock_geth_adapter/methods",
"examples/mock_geth_adapter/methods/guest",
"examples/mock_geth_adapter/core",
"examples/zksync_adapter/host",
"examples/zksync_adapter/methods",
"examples/zksync_adapter/methods/risc0-guest",
"examples/zksync_adapter/methods/sp1-guest",
"examples/zksync_adapter/core",
"adapter_sdk",
"nexus_cli",
"examples/zksync_adapter/bench",
"nexus/bench",
"nexus_bench_setup",
]
[workspace.package]
version = "1.0.0"
[patch.crates-io]
sp-core = { git = "https://github.com/availproject/substrate.git", branch = "goldberg" }
sp-io = { git = "https://github.com/availproject/substrate.git", branch = "goldberg" }
sp-runtime = { git = "https://github.com/availproject/substrate.git", branch = "goldberg" }
sp-std = { git = "https://github.com/availproject/substrate.git", branch = "goldberg" }
sp-core-hashing = { git = "https://github.com/availproject/substrate.git", branch = "goldberg" }
# Remove below patch once rust version can be updated for zkvm
bumpalo = { git = "https://github.com/fitzgen/bumpalo", tag = "3.14.0" }