mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
47 lines
1.7 KiB
TOML
47 lines
1.7 KiB
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-primitives = { path = "../../primitives" }
|
|
reth-ipc = { path = "../ipc" }
|
|
reth-interfaces = { path = "../../interfaces" }
|
|
reth-network-api = { path = "../../net/network-api" }
|
|
reth-provider = { path = "../../storage/provider" }
|
|
reth-rpc = { path = "../rpc" }
|
|
reth-rpc-api = { path = "../rpc-api" }
|
|
reth-rpc-engine-api = { path = "../rpc-engine-api" }
|
|
reth-rpc-types = { path = "../rpc-types" }
|
|
reth-tasks = { path = "../../tasks" }
|
|
reth-transaction-pool = { path = "../../transaction-pool" }
|
|
|
|
# rpc/net
|
|
jsonrpsee = { version = "0.18", features = ["server"] }
|
|
tower-http = { version = "0.4", features = ["full"] }
|
|
tower = { version = "0.4", features = ["full"] }
|
|
hyper = "0.14"
|
|
|
|
# misc
|
|
strum = { version = "0.24", features = ["derive"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
thiserror = "1.0"
|
|
tracing = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
reth-tracing = { path = "../../tracing" }
|
|
reth-rpc-api = { path = "../rpc-api", features = ["client"] }
|
|
reth-transaction-pool = { path = "../../transaction-pool", features = ["test-utils"] }
|
|
reth-provider = { path = "../../storage/provider", features = ["test-utils"] }
|
|
reth-network-api = { path = "../../net/network-api", features = ["test-utils"] }
|
|
reth-interfaces = { path = "../../interfaces", features = ["test-utils"] }
|
|
reth-beacon-consensus = { path = "../../consensus/beacon" }
|
|
reth-payload-builder = { path = "../../payload/builder", features = ["test-utils"] }
|
|
|
|
tokio = { version = "1", features = ["rt", "rt-multi-thread"] }
|
|
serde_json = "1.0.94"
|