# `hive-sock-client` — the one JSON-line-over-unix-socket client shared by # every daemon that talks to a hyperhive socket. Protocol-agnostic on # purpose: it is generic over the request/response types, so it works for # the host-served control socket and the harness's in-agent socket alike. # Deliberately NOT folded into one of the `*-sock` wire-type crates — # those stay dependency-free type definitions. [package] name = "hive-sock-client" edition.workspace = true version.workspace = true readme = "README.md" [lints] workspace = true [dependencies] anyhow.workspace = true serde.workspace = true serde_json.workspace = true tokio.workspace = true tracing.workspace = true