mirror of
https://github.com/playit-cloud/playit-agent.git
synced 2026-07-04 17:58:40 +00:00
- 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
22 lines
613 B
TOML
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"
|