interprocess
interprocess copied to clipboard
Multifunctional cross-platform interprocess communication toolkit for Rust.
In `src\os\unix\listener.rs:88~92` ```rs // FIXME the standard library uses 128 here without an option to change this // number, why? If std has solid reasons to do this, remove this...
**Describe the bug** When you run `cargo doc` on a crate that depends on interprocess without the tokio feature it fails because the tokio feature is not enabled. **To Reproduce**...
Getting the following error: ``` error: the main function cannot accept arguments --> src/server.rs:17:10 | 17 | async fn main(notify: Sender) -> Result { | ^^^^ error[E0432]: unresolved import `interprocess::os::unix::udsocket::tokio`...
**Describe the bug** The drop implementation of a SendHalf panics with "_fresh Tokio limbo helper died immediately after being created_" when the SendHalf is dropped in result to a tokio...
Hi! First of all, thank you for your work! Interprocess has been very beneficial in my projects so far. This PR addresses a potential panic in the SendHalf drop implementation...
It would be nice to have an example of the actual interprocess (i.e. `{std,tokio}::process::Command`) use of `named_pipe`; the current ones are only between Tokio tasks/threads, where of course you can...
Context: latest version 2.2.0, rust 1.79.0, macos ventura 13.6 I'm working on a cross-platform client for some thing or another, and I must use ipc on unix and windows. In...