Skip to content

Commit

Permalink
move evm code into independent crate
Browse files Browse the repository at this point in the history
  • Loading branch information
Pana committed Jan 7, 2025
1 parent c697543 commit 5e494f7
Show file tree
Hide file tree
Showing 17 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ members = [
"crates/ethereum/payload/",
"crates/ethereum/primitives/",
"crates/etl/",
"crates/evm/",
"crates/evm/evm",
"crates/evm/execution-errors",
"crates/evm/execution-types",
"crates/exex/exex/",
Expand Down Expand Up @@ -345,7 +345,7 @@ reth-ethereum-forks = { path = "crates/ethereum-forks", default-features = false
reth-ethereum-payload-builder = { path = "crates/ethereum/payload" }
reth-ethereum-primitives = { path = "crates/ethereum/primitives", default-features = false }
reth-etl = { path = "crates/etl" }
reth-evm = { path = "crates/evm" }
reth-evm = { path = "crates/evm/evm" }
reth-evm-ethereum = { path = "crates/ethereum/evm" }
reth-optimism-evm = { path = "crates/optimism/evm" }
reth-execution-errors = { path = "crates/evm/execution-errors" }
Expand Down
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.
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.
2 changes: 1 addition & 1 deletion docs/repo/layout.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ Different consensus mechanisms.
Crates related to transaction execution.

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

Expand Down

0 comments on commit 5e494f7

Please sign in to comment.