mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
Co-authored-by: Alessandro Mazza <121622391+alessandromazza98@users.noreply.github.com> Co-authored-by: Supernovahs.eth <91280922+supernovahs@users.noreply.github.com> Co-authored-by: Oliver Nordbjerg <hi@notbjerg.me>
38 lines
1.1 KiB
TOML
38 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"] }
|
|
|
|
# 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
|