Files
nanoreth/crates/net/rpc-builder/Cargo.toml
2023-01-16 14:52:52 +01:00

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"] }