Skip to content

Commit 0421d2e

Browse files
committed
suzuka crates as clones of monza
Move and rename shared crates under protocol-units/execution/aptos: - opt-executor - utils
1 parent ea2d588 commit 0421d2e

File tree

34 files changed

+1473
-97
lines changed

34 files changed

+1473
-97
lines changed

Cargo.lock

+224-77
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+16-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
[workspace]
22

33
members = [
4+
"protocol-units/execution/aptos/opt-executor",
5+
"protocol-units/execution/aptos/util",
46
"protocol-units/execution/monza/*",
7+
"protocol-units/execution/suzuka/*",
58

69
"protocol-units/da/m1/*",
710

@@ -13,7 +16,13 @@ members = [
1316
"util/buildtime/buildtime-helpers",
1417
"util/buildtime/buildtime-macros",
1518

16-
"networks/monza/*",
19+
"networks/monza/monza-client",
20+
"networks/monza/monza-config",
21+
"networks/monza/monza-full-node",
22+
23+
"networks/suzuka/suzuka-client",
24+
"networks/suzuka/suzuka-config",
25+
"networks/suzuka/suzuka-full-node",
1726

1827
"protocol-units/zkfp/host",
1928
"protocol-units/zkfp/methods",
@@ -33,11 +42,15 @@ rust-version = "1.75"
3342

3443
[workspace.dependencies]
3544
# internal
45+
## execution/aptos
46+
movement-opt-executor = { path = "protocol-units/execution/aptos/opt-executor" }
47+
movement-execution-util = { path = "protocol-units/execution/aptos/util" }
3648
## execution/monza
37-
monza-opt-executor = { path = "protocol-units/execution/monza/opt-executor" }
3849
monza-fin-executor = { path = "protocol-units/execution/monza/fin-executor" }
39-
monza-execution-util = { path = "protocol-units/execution/monza/util" }
4050
monza-executor = { path = "protocol-units/execution/monza/executor" }
51+
## execution/monza
52+
suzuka-fin-executor = { path = "protocol-units/execution/suzuka/fin-executor" }
53+
suzuka-executor = { path = "protocol-units/execution/suzuka/executor" }
4154

4255
## types
4356
movement-types = { path = "util/movement-types"}

networks/monza/monza-client/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ once_cell = { workspace = true }
1818
tokio = { workspace = true }
1919
url = { workspace = true }
2020
rand = { workspace = true }
21-
monza-execution-util = { workspace = true }
21+
movement-execution-util = { workspace = true }
2222

2323
[lints]
2424
workspace = true

0 commit comments

Comments
 (0)