Files
playit-agent/packages/playit-ipc/Cargo.toml
T
Patrick Lorio fa4d3ec34b Switch IPC transport to framed JSON codecs
- Replace manual line buffering with tokio-util framed readers and writers
- Reuse shared IPC connect and framing helpers in client and server
- Add codec dependencies for IPC message handling
2026-04-23 18:19:43 -07:00

22 lines
613 B
TOML

[package]
name = "playit-ipc"
version.workspace = true
edition = "2024"
authors = ["Patrick Lorio <patrick@playit.gg>"]
description = "Shared IPC transport and wire models for playit"
repository = "https://github.com/playit-cloud/playit-agent"
[dependencies]
tokio = { workspace = true }
tokio-util = { workspace = true }
futures-util = { workspace = true, features = ["sink"] }
serde = { workspace = true }
serde_json = { workspace = true }
dirs = { workspace = true }
tracing = { workspace = true }
interprocess = { version = "2.2", features = ["tokio"] }
[target.'cfg(windows)'.dependencies]
whoami = "1.5"