mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
79 lines
2.3 KiB
TOML
79 lines
2.3 KiB
TOML
[package]
|
|
name = "reth-rpc-builder"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
description = "Helpers for configuring RPC"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
# reth
|
|
reth-ipc.workspace = true
|
|
reth-chainspec.workspace = true
|
|
reth-network-api.workspace = true
|
|
reth-node-core.workspace = true
|
|
reth-provider.workspace = true
|
|
reth-rpc.workspace = true
|
|
reth-rpc-api.workspace = true
|
|
reth-rpc-eth-api.workspace = true
|
|
reth-rpc-layer.workspace = true
|
|
reth-rpc-eth-types.workspace = true
|
|
reth-rpc-server-types.workspace = true
|
|
reth-tasks = { workspace = true, features = ["rayon"] }
|
|
reth-transaction-pool.workspace = true
|
|
reth-evm.workspace = true
|
|
reth-engine-primitives.workspace = true
|
|
reth-rpc-types.workspace = true
|
|
reth-primitives.workspace = true
|
|
|
|
# ethereum
|
|
alloy-network.workspace = true
|
|
alloy-rpc-types.workspace = true
|
|
|
|
# rpc/net
|
|
jsonrpsee = { workspace = true, features = ["server"] }
|
|
tower-http = { workspace = true, features = ["full"] }
|
|
tower = { workspace = true, features = ["full"] }
|
|
http.workspace = true
|
|
pin-project.workspace = true
|
|
|
|
# metrics
|
|
reth-metrics = { workspace = true, features = ["common"] }
|
|
metrics.workspace = true
|
|
|
|
# misc
|
|
serde = { workspace = true, features = ["derive"] }
|
|
thiserror.workspace = true
|
|
tracing.workspace = true
|
|
|
|
[dev-dependencies]
|
|
reth-chainspec.workspace = true
|
|
reth-beacon-consensus.workspace = true
|
|
reth-network-api.workspace = true
|
|
reth-network-peers.workspace = true
|
|
reth-evm-ethereum.workspace = true
|
|
reth-ethereum-engine-primitives.workspace = true
|
|
reth-payload-builder = { workspace = true, features = ["test-utils"] }
|
|
reth-provider = { workspace = true, features = ["test-utils"] }
|
|
reth-rpc-api = { workspace = true, features = ["client"] }
|
|
reth-rpc-engine-api.workspace = true
|
|
reth-rpc-types.workspace = true
|
|
reth-tracing.workspace = true
|
|
reth-transaction-pool = { workspace = true, features = ["test-utils"] }
|
|
reth-tokio-util.workspace = true
|
|
reth-node-api.workspace = true
|
|
reth-rpc-types-compat.workspace = true
|
|
|
|
alloy-primitives.workspace = true
|
|
alloy-rpc-types-eth.workspace = true
|
|
alloy-rpc-types-trace.workspace = true
|
|
|
|
tokio = { workspace = true, features = ["rt", "rt-multi-thread"] }
|
|
serde_json.workspace = true
|
|
clap = { workspace = true, features = ["derive"] }
|