Files
nanoreth/crates/rpc/rpc-engine-api/Cargo.toml
2023-10-05 19:51:50 +00:00

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