mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
59 lines
1.5 KiB
TOML
59 lines
1.5 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"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
# reth
|
|
reth-chainspec.workspace = true
|
|
reth-rpc-api.workspace = true
|
|
reth-storage-api.workspace = true
|
|
reth-payload-builder.workspace = true
|
|
reth-payload-builder-primitives.workspace = true
|
|
reth-payload-primitives.workspace = true
|
|
reth-tasks.workspace = true
|
|
reth-rpc-types-compat.workspace = true
|
|
reth-engine-primitives.workspace = true
|
|
reth-transaction-pool.workspace = true
|
|
|
|
# ethereum
|
|
alloy-eips.workspace = true
|
|
alloy-primitives.workspace = true
|
|
alloy-rpc-types-engine = { workspace = true, features = ["jsonrpsee-types"] }
|
|
|
|
# async
|
|
tokio = { workspace = true, features = ["sync"] }
|
|
|
|
# metrics
|
|
reth-metrics.workspace = true
|
|
metrics.workspace = true
|
|
|
|
# misc
|
|
async-trait.workspace = true
|
|
jsonrpsee-core.workspace = true
|
|
jsonrpsee-types.workspace = true
|
|
serde.workspace = true
|
|
thiserror.workspace = true
|
|
tracing.workspace = true
|
|
parking_lot.workspace = true
|
|
|
|
[dev-dependencies]
|
|
reth-ethereum-engine-primitives.workspace = true
|
|
reth-provider = { workspace = true, features = ["test-utils"] }
|
|
reth-primitives.workspace = true
|
|
reth-primitives-traits.workspace = true
|
|
reth-payload-builder = { workspace = true, features = ["test-utils"] }
|
|
reth-tokio-util.workspace = true
|
|
reth-testing-utils.workspace = true
|
|
alloy-rlp.workspace = true
|
|
|
|
assert_matches.workspace = true
|