mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-02-11 23:45:05 -05:00
34 lines
682 B
TOML
34 lines
682 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
|
|
|
|
# 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"
|
|
]
|