mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-04-08 03:01:12 -04:00
76 lines
2.0 KiB
TOML
76 lines
2.0 KiB
TOML
[package]
|
|
name = "reth-rpc"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
description = """
|
|
Reth RPC implementation
|
|
"""
|
|
[dependencies]
|
|
# reth
|
|
reth-interfaces.workspace = true
|
|
reth-primitives.workspace = true
|
|
reth-rpc-api = { path = "../rpc-api" }
|
|
reth-rlp.workspace = true
|
|
reth-rpc-types.workspace = true
|
|
reth-provider = { workspace = true, features = ["test-utils"] }
|
|
reth-transaction-pool = { workspace = true, features = ["test-utils"] }
|
|
reth-network-api.workspace = true
|
|
reth-rpc-engine-api = { path = "../rpc-engine-api" }
|
|
reth-revm = { path = "../../revm" }
|
|
reth-tasks.workspace = true
|
|
reth-consensus-common = { path = "../../consensus/common" }
|
|
reth-rpc-types-compat.workspace = true
|
|
lazy_static = "*"
|
|
|
|
# eth
|
|
revm = { workspace = true, features = [
|
|
"optional_block_gas_limit",
|
|
"optional_eip3607",
|
|
"optional_no_base_fee",
|
|
] }
|
|
ethers-core = { workspace = true, features = ["eip712"] }
|
|
revm-primitives = { workspace = true, features = ["serde"] }
|
|
|
|
# rpc
|
|
jsonrpsee.workspace = true
|
|
http = "0.2.8"
|
|
http-body = "0.4.5"
|
|
hyper = "0.14.24"
|
|
jsonwebtoken = "8"
|
|
|
|
# async
|
|
async-trait.workspace = true
|
|
tokio = { workspace = true, features = ["sync"] }
|
|
tower = "0.4"
|
|
tokio-stream = { workspace = true, features = ["sync"] }
|
|
tokio-util = "0.7"
|
|
pin-project.workspace = true
|
|
rayon.workspace = true
|
|
|
|
# metrics
|
|
reth-metrics.workspace = true
|
|
metrics.workspace = true
|
|
|
|
# misc
|
|
bytes.workspace = true
|
|
secp256k1 = { workspace = true, features = ["global-context", "rand-std", "recovery"] }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json.workspace = true
|
|
thiserror.workspace = true
|
|
hex = "0.4"
|
|
rand.workspace = true
|
|
tracing.workspace = true
|
|
tracing-futures = "0.2"
|
|
schnellru = "0.2"
|
|
futures.workspace = true
|
|
|
|
[dev-dependencies]
|
|
jsonrpsee = { workspace = true, features = ["client"] }
|
|
assert_matches.workspace = true
|
|
tempfile = "3.5.0"
|
|
reth-interfaces = { workspace = true, features = ["test-utils"] }
|