mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
37 lines
882 B
TOML
37 lines
882 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"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[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.workspace = true
|
|
|
|
# misc
|
|
jsonrpsee = { workspace = true, features = ["server", "client"] }
|
|
serde_json.workspace = true
|
|
tracing.workspace = true
|
|
bytes.workspace = true
|
|
thiserror.workspace = true
|
|
futures-util = "0.3.30"
|
|
|
|
[dev-dependencies]
|
|
tokio-stream = { workspace = true, features = ["sync"] }
|
|
reth-tracing.workspace = true
|