Add windows Ipc Client implementation (#7187)

This commit is contained in:
Abner Zheng
2024-04-26 21:34:34 +08:00
committed by GitHub
parent 73ea68692c
commit b6b2cf816e
15 changed files with 580 additions and 515 deletions

View File

@ -15,7 +15,6 @@ workspace = true
# 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
@ -30,7 +29,12 @@ tracing.workspace = true
bytes.workspace = true
thiserror.workspace = true
futures-util = "0.3.30"
interprocess = { version = "1.2.1", features = ["tokio_support"] }
[target.'cfg(windows)'.dependencies]
windows-sys = { version = "0.52.0", features = ["Win32_Foundation"] }
[dev-dependencies]
tokio-stream = { workspace = true, features = ["sync"] }
reth-tracing.workspace = true
rand.workspace = true