Skip to content

Commit cfa03c9

Browse files
committed
fix/build it
1 parent 42c88a5 commit cfa03c9

13 files changed

Lines changed: 105 additions & 2086 deletions

File tree

Cargo.lock

Lines changed: 81 additions & 382 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
11
[workspace]
22
resolver = "2"
3-
members = [
4-
"bin/lumen",
5-
"crates/common",
6-
"crates/node",
7-
"crates/rollkit",
8-
"crates/e2e-tests",
9-
]
3+
members = ["bin/lumen", "crates/common", "crates/node", "crates/rollkit"]
104

115
[workspace.package]
126
version = "0.1.0"
@@ -64,6 +58,7 @@ reth-revm = { git = "https://github.com/paradigmxyz/reth.git", version = "1.4.8"
6458
reth-rpc-api = { git = "https://github.com/paradigmxyz/reth.git", version = "1.4.8" }
6559
reth-rpc-builder = { git = "https://github.com/paradigmxyz/reth.git", version = "1.4.8" }
6660
reth-rpc-engine-api = { git = "https://github.com/paradigmxyz/reth.git", version = "1.4.8" }
61+
reth_ethereum_primitives = { git = "https://github.com/paradigmxyz/reth.git", version = "1.4.8" }
6762

6863

6964
# Test dependencies

bin/lumen/Cargo.toml

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,37 @@ path = "src/main.rs"
1616
# Core lumen crates
1717
lumen-node = { path = "../../crates/node" }
1818
lumen-common = { path = "../../crates/common" }
19+
lumen-rollkit = { path = "../../crates/rollkit" }
1920

2021
# Reth CLI and core dependencies
2122
reth-cli-util.workspace = true
2223
reth-ethereum-cli.workspace = true
2324
reth-ethereum = { workspace = true, features = ["node", "cli", "pool"] }
2425
reth-node-builder.workspace = true
2526
reth-chainspec.workspace = true
27+
reth-primitives-traits.workspace = true
28+
reth-engine-local.workspace = true
29+
reth-basic-payload-builder.workspace = true
30+
reth-ethereum-payload-builder.workspace = true
31+
reth-payload-builder.workspace = true
32+
reth-revm.workspace = true
33+
reth-provider.workspace = true
34+
reth-trie-db.workspace = true
35+
36+
# Alloy dependencies
37+
alloy-network.workspace = true
38+
alloy-rpc-types.workspace = true
39+
alloy-primitives.workspace = true
40+
alloy-eips.workspace = true
41+
2642

2743
# Core dependencies
2844
eyre.workspace = true
2945
tracing.workspace = true
3046
tokio = { workspace = true, features = ["full"] }
3147
clap = { workspace = true, features = ["derive", "env"] }
48+
serde = { workspace = true, features = ["derive"] }
49+
thiserror.workspace = true
3250

3351
[lints]
3452
workspace = true
@@ -48,4 +66,4 @@ min-error-logs = ["tracing/release_max_level_error"]
4866
min-warn-logs = ["tracing/release_max_level_warn"]
4967
min-info-logs = ["tracing/release_max_level_info"]
5068
min-debug-logs = ["tracing/release_max_level_debug"]
51-
min-trace-logs = ["tracing/release_max_level_trace"]
69+
min-trace-logs = ["tracing/release_max_level_trace"]

crates/e2e-tests/Cargo.toml

Lines changed: 0 additions & 60 deletions
This file was deleted.

crates/e2e-tests/src/common.rs

Lines changed: 0 additions & 178 deletions
This file was deleted.

0 commit comments

Comments
 (0)