Skip to content
This repository was archived by the owner on Dec 15, 2025. It is now read-only.

Commit 30c6877

Browse files
committed
RPC over Unix socket with reth-ipc crate
1 parent 1f2f56d commit 30c6877

File tree

8 files changed

+255
-1021
lines changed

8 files changed

+255
-1021
lines changed

Cargo.lock

Lines changed: 104 additions & 31 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ edition = "2018"
1313

1414
[dependencies]
1515
anyhow = "1.0"
16-
tokio = { version = "1.14.0", features = ["full"] }
17-
tokio-stream = { version = "0.1.8", features = ["sync"] }
16+
tokio = { version = "1.44.1", features = ["full"] }
17+
tokio-stream = { version = "0.1.17", features = ["sync"] }
1818
shlex ="1.1"
1919
nix = "0.22.1"
2020
serde = { version = "1.0", features = ["derive"] }
@@ -29,9 +29,10 @@ command-group = "1.0.8"
2929
hyper = "1.6.0"
3030
axum = { version = "0.7.4", features = ["http1"] }
3131
bytes = "1.0"
32-
jsonrpsee = { version = "0.24.9", features = ["server", "client", "macros", "jsonrpsee-types"] }
32+
jsonrpsee = { version = "0.24.9", features = ["server", "client", "macros"] }
3333
memchr = "2.5.0"
3434
async-trait = "0.1.88"
35+
reth-ipc = { git = "https://github.com/paradigmxyz/reth", package = "reth-ipc" }
3536

3637
[dev-dependencies]
3738
tokio = { version = "1.14.0", features = ["full", "test-util"] }

0 commit comments

Comments
 (0)