diff --git a/Cargo.lock b/Cargo.lock index 1cbcfa7a6..24793a311 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6663,6 +6663,7 @@ dependencies = [ "lz4_flex", "once_cell", "parking_lot", + "reqwest", "reth-basic-payload-builder", "reth-chainspec", "reth-cli", @@ -7631,14 +7632,22 @@ name = "reth-ethereum-cli" version = "1.2.0" dependencies = [ "alloy-chains", + "alloy-consensus", + "alloy-genesis", "alloy-primitives", + "alloy-rlp", "clap", "eyre", + "lz4_flex", "once_cell", + "reqwest", "reth-chainspec", "reth-cli", "reth-cli-commands", "reth-primitives", + "revm", + "rmp-serde", + "serde", "serde_json", ] @@ -7804,6 +7813,7 @@ dependencies = [ "reth-testing-utils", "secp256k1 0.30.0", "serde_json", + "sha2 0.10.8", ] [[package]] diff --git a/crates/ethereum/cli/Cargo.toml b/crates/ethereum/cli/Cargo.toml index 72f1fbc9b..70a1c4648 100644 --- a/crates/ethereum/cli/Cargo.toml +++ b/crates/ethereum/cli/Cargo.toml @@ -21,7 +21,15 @@ eyre.workspace = true once_cell.workspace = true alloy-chains.workspace = true alloy-primitives.workspace = true +alloy-genesis.workspace = true +alloy-consensus.workspace = true +alloy-rlp.workspace = true serde_json.workspace = true +lz4_flex.workspace = true +revm = { workspace = true, features = ["serde"] } +serde.workspace = true +rmp-serde.workspace = true +reqwest = { workspace = true } [dev-dependencies] clap.workspace = true diff --git a/crates/ethereum/evm/Cargo.toml b/crates/ethereum/evm/Cargo.toml index 0838a59f9..4ef4f6282 100644 --- a/crates/ethereum/evm/Cargo.toml +++ b/crates/ethereum/evm/Cargo.toml @@ -29,6 +29,9 @@ alloy-evm.workspace = true alloy-sol-types.workspace = true alloy-consensus.workspace = true +sha2.workspace = true +serde_json.workspace = true + [dev-dependencies] reth-testing-utils.workspace = true reth-evm = { workspace = true, features = ["test-utils"] }