Files
nanoreth/crates/rpc/ipc/Cargo.toml
2023-05-15 15:42:48 +02:00

37 lines
795 B
TOML

[package]
name = "reth-ipc"
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/paradigmxyz/reth"
readme = "README.md"
description = """
IPC support for reth
"""
[dependencies]
# async/net
futures = "0.3"
parity-tokio-ipc = "0.9.0"
tokio = { version = "1", features = ["net", "time", "rt-multi-thread"] }
tokio-util = { version = "0.7", features = ["codec"] }
tokio-stream = "0.1"
async-trait = "0.1"
pin-project = "1.0"
tower = "0.4"
# misc
jsonrpsee = { version = "0.18", features = ["server", "client"] }
serde_json = "1.0"
tracing = "0.1.37"
bytes = "1.4"
thiserror = "1.0.37"
[dev-dependencies]
tracing-test = "0.2"
tokio-stream = { version = "0.1", features = ["sync"] }
[features]
client = ["jsonrpsee/client", "jsonrpsee/async-client"]