Files
playit-agent/packages/playit-ipc/Cargo.toml
T
Patrick Lorio 7b852dd91c Add hello handshake to IPC protocol
- Rename protocol version fields to IPC version
- Send server hello before requests and ignore unknown event types
- Decode requests by type and surface invalid request errors
2026-04-15 15:01:03 -07:00

20 lines
522 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 }
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"