mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-01-22 21:58:05 -05:00
31 lines
801 B
TOML
31 lines
801 B
TOML
[package]
|
|
name = "example-engine-api-access"
|
|
version = "0.0.0"
|
|
publish = false
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
# reth
|
|
reth-db = { workspace = true, features = ["op", "test-utils"] }
|
|
reth-node-builder.workspace = true
|
|
reth-optimism-consensus.workspace = true
|
|
reth-tasks.workspace = true
|
|
reth-node-api.workspace = true
|
|
reth-rpc-api.workspace = true
|
|
reth-tracing.workspace = true
|
|
reth-provider.workspace = true
|
|
reth-optimism-node.workspace = true
|
|
reth-optimism-chainspec.workspace = true
|
|
|
|
# alloy
|
|
alloy-rpc-types-engine.workspace = true
|
|
|
|
async-trait.workspace = true
|
|
clap = { workspace = true, features = ["derive"] }
|
|
eyre.workspace = true
|
|
jsonrpsee.workspace = true
|
|
futures.workspace = true
|
|
serde_json.workspace = true
|
|
tokio = { workspace = true, features = ["sync"] }
|