mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
38 lines
936 B
TOML
38 lines
936 B
TOML
[package]
|
|
name = "reth-ipc"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
description = """
|
|
IPC support for reth
|
|
"""
|
|
|
|
[dependencies]
|
|
|
|
# async/net
|
|
futures = { workspace = true }
|
|
parity-tokio-ipc = "0.9.0"
|
|
tokio = { workspace = true, features = ["net", "time", "rt-multi-thread"] }
|
|
tokio-util = { workspace = true, features = ["codec"] }
|
|
tokio-stream = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
pin-project = { workspace = true }
|
|
tower = "0.4"
|
|
|
|
# misc
|
|
jsonrpsee = { version = "0.18", features = ["server", "client"] }
|
|
serde_json = { workspace = true }
|
|
tracing = { workspace = true }
|
|
bytes = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
tracing-test = "0.2"
|
|
tokio-stream = { workspace = true, features = ["sync"] }
|
|
|
|
[features]
|
|
client = ["jsonrpsee/client", "jsonrpsee/async-client"]
|