| Crates.io | easyipc |
| lib.rs | easyipc |
| version | 0.1.0 |
| created_at | 2025-01-24 07:46:09.313296+00 |
| updated_at | 2025-01-24 07:46:09.313296+00 |
| description | A Rust library for inter-process communication (IPC) using local sockets. |
| homepage | |
| repository | |
| max_upload_size | |
| id | 1529135 |
| size | 6,543 |
EasyIPC is a Rust library for inter-process communication (IPC) using local sockets. It provides simple functions to create listeners, send and receive messages.
cargo add easyipc
let listener = easyipc::ipc_create_listener("example_uid").unwrap();
let timeout = std::time::Duration::from_secs(5);
let recv_buffer = easyipc::ipc_recv(&listener, timeout).unwrap();
easyipc::ipc_send("example_uid", b"Hello, world!").unwrap();
This project is licensed under the MIT License.