mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
42 lines
1.1 KiB
TOML
42 lines
1.1 KiB
TOML
[package]
|
|
name = "reth-rpc-engine-api"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
description = "Implementation of Engine API"
|
|
|
|
[dependencies]
|
|
# reth
|
|
reth-primitives.workspace = true
|
|
reth-interfaces.workspace = true
|
|
reth-provider.workspace = true
|
|
reth-rpc-types.workspace = true
|
|
reth-rpc-api = { path = "../rpc-api" }
|
|
reth-beacon-consensus = { path = "../../consensus/beacon" }
|
|
reth-payload-builder.workspace = true
|
|
reth-tasks.workspace = true
|
|
reth-rpc-types-compat.workspace = true
|
|
# async
|
|
tokio = { workspace = true, features = ["sync"] }
|
|
|
|
# metrics
|
|
reth-metrics.workspace = true
|
|
metrics.workspace = true
|
|
|
|
# misc
|
|
async-trait.workspace = true
|
|
thiserror.workspace = true
|
|
jsonrpsee-types.workspace = true
|
|
jsonrpsee-core.workspace = true
|
|
tracing.workspace = true
|
|
|
|
[dev-dependencies]
|
|
alloy-rlp.workspace = true
|
|
reth-interfaces = { workspace = true, features = ["test-utils"] }
|
|
reth-provider = { workspace = true, features = ["test-utils"] }
|
|
reth-payload-builder = { workspace = true, features = ["test-utils"] }
|
|
assert_matches.workspace = true
|