mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
* feat(rpc): engine api * change transition config exchange * payload block construction * pull out engine api logic * linter * clippy * clippy * Apply suggestions from code review Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de> * import & map_err for RecvError * move result Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
34 lines
854 B
TOML
34 lines
854 B
TOML
[package]
|
|
name = "reth-rpc"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/paradigmxyz/reth"
|
|
readme = "README.md"
|
|
description = """
|
|
Reth RPC implementation
|
|
"""
|
|
[dependencies]
|
|
# reth
|
|
reth-interfaces = { path = "../../interfaces" }
|
|
reth-primitives = { path = "../../primitives" }
|
|
reth-rpc-api = { path = "../rpc-api" }
|
|
reth-rpc-types = { path = "../rpc-types" }
|
|
reth-provider = { path = "../../storage/provider" }
|
|
reth-transaction-pool = { path = "../../transaction-pool" }
|
|
reth-network = { path = "../network" }
|
|
reth-consensus = { path = "../../consensus", features = ["serde"] }
|
|
|
|
# rpc
|
|
jsonrpsee = { version = "0.16" }
|
|
|
|
# async
|
|
async-trait = "0.1"
|
|
tokio = { version = "1", features = ["sync"] }
|
|
|
|
# misc
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
thiserror = "1.0"
|
|
hex = "0.4"
|