mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
20 lines
600 B
TOML
20 lines
600 B
TOML
[package]
|
|
name = "reth-rpc-builder"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/paradigmxyz/reth"
|
|
description = "Helpers for configuring RPC"
|
|
|
|
[dependencies]
|
|
# reth
|
|
reth-ipc = { path = "../ipc" }
|
|
reth-network-api = { path = "../network-api" }
|
|
reth-provider = { path = "../../storage/provider" }
|
|
reth-rpc = { path = "../rpc" }
|
|
reth-transaction-pool = { path = "../../transaction-pool" }
|
|
|
|
jsonrpsee = { version = "0.16", features = ["server"] }
|
|
strum = { version = "0.24", features = ["derive"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|