| Crates.io | rapace-transport-stream |
| lib.rs | rapace-transport-stream |
| version | 0.4.0 |
| created_at | 2025-12-11 17:59:59.908343+00 |
| updated_at | 2025-12-14 18:00:13.508392+00 |
| description | TCP/Unix socket transport for rapace |
| homepage | |
| repository | https://github.com/bearcove/rapace |
| max_upload_size | |
| id | 1980211 |
| size | 36,883 |
TCP and Unix socket transport for rapace RPC.
Network transport for local and remote communication via TCP or Unix domain sockets.
tcp://localhost:9000 - remote communication, cross-machineunix:///tmp/rapace.sock - efficient local IPC on Unix-like systemsuse rapace::RpcSession;
use rapace_transport_stream::TcpTransport;
let transport = TcpTransport::connect("127.0.0.1:9000").await?;
let session = RpcSession::new(transport);
Licensed under either of:
at your option.