Files
reth/crates/rpc/rpc-api/Cargo.toml
2024-09-11 11:25:07 +00:00

39 lines
788 B
TOML

[package]
name = "reth-rpc-api"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
description = "Reth RPC interfaces"
[lints]
workspace = true
[dependencies]
# reth
reth-primitives.workspace = true
reth-rpc-types.workspace = true
reth-rpc-eth-api.workspace = true
reth-engine-primitives.workspace = true
reth-network-peers.workspace = true
# ethereum
alloy-json-rpc.workspace = true
alloy-eips.workspace = true
alloy-primitives.workspace = true
# misc
jsonrpsee = { workspace = true, features = ["server", "macros"] }
[dev-dependencies]
serde_json.workspace = true
[features]
client = [
"jsonrpsee/client",
"jsonrpsee/async-client",
"reth-rpc-eth-api/client"
]