feat: local engine (#10803)

This commit is contained in:
greged93
2024-09-19 15:07:15 +02:00
committed by GitHub
parent 89ca7a9ef1
commit 668807802b
11 changed files with 478 additions and 23 deletions

View File

@ -0,0 +1,46 @@
[package]
name = "reth-engine-local"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
exclude.workspace = true
[dependencies]
# reth
reth-beacon-consensus.workspace = true
reth-engine-tree.workspace = true
reth-node-types.workspace = true
reth-payload-builder.workspace = true
reth-payload-primitives.workspace = true
reth-primitives.workspace = true
reth-provider.workspace = true
reth-prune.workspace = true
reth-transaction-pool.workspace = true
reth-stages-api.workspace = true
# async
tokio.workspace = true
tokio-stream.workspace = true
futures-util.workspace = true
# misc
eyre.workspace = true
tracing.workspace = true
[dev-dependencies]
reth-chainspec.workspace = true
reth-chain-state.workspace = true
reth-config.workspace = true
reth-db = { workspace = true, features = ["test-utils"] }
reth-ethereum-engine-primitives.workspace = true
reth-exex-test-utils.workspace = true
reth-payload-builder = { workspace = true, features = ["test-utils"] }
reth-provider = { workspace = true, features = ["test-utils"] }
reth-rpc-types.workspace = true
reth-tracing.workspace = true
[lints]
workspace = true