Skip to content

Commit 67e34b5

Browse files
authored
refactor: move reth-evm crate code into its own crate folder (paradigmxyz#15870)
1 parent 7b483b4 commit 67e34b5

File tree

10 files changed

+3
-3
lines changed

10 files changed

+3
-3
lines changed

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ members = [
4242
"crates/ethereum/primitives/",
4343
"crates/ethereum/reth/",
4444
"crates/etl/",
45-
"crates/evm/",
45+
"crates/evm/evm",
4646
"crates/evm/execution-errors",
4747
"crates/evm/execution-types",
4848
"crates/exex/exex/",
@@ -358,7 +358,7 @@ reth-ethereum-payload-builder = { path = "crates/ethereum/payload" }
358358
reth-ethereum-primitives = { path = "crates/ethereum/primitives", default-features = false }
359359
reth-ethereum = { path = "crates/ethereum/reth" }
360360
reth-etl = { path = "crates/etl" }
361-
reth-evm = { path = "crates/evm", default-features = false }
361+
reth-evm = { path = "crates/evm/evm", default-features = false }
362362
reth-evm-ethereum = { path = "crates/ethereum/evm", default-features = false }
363363
reth-optimism-evm = { path = "crates/optimism/evm", default-features = false }
364364
reth-execution-errors = { path = "crates/evm/execution-errors", default-features = false }
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

docs/repo/layout.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ Different consensus mechanisms.
8888
Crates related to transaction execution.
8989

9090
- [`revm`](../../crates/revm): Revm utils and implementations specific to reth.
91-
- [`evm`](../../crates/evm): Traits for configuring an EVM specifics.
91+
- [`evm`](../../crates/evm/evm): Traits for configuring an EVM specifics.
9292
- [`execution-types`](../../crates/evm/execution-types): Commonly used types for (EVM) block execution.
9393
- [`execution-errors`](../../crates/evm/execution-errors): Commonly used error types used when doing block execution.
9494

0 commit comments

Comments
 (0)