interprocess 2.4.0

Interprocess communication toolkit
Documentation
#[path = "util/mod.rs"]
#[macro_use]
mod util;

mod os {
    #[cfg(unix)]
    mod unix {
        mod local_socket {
            mod fake_ns;
            mod mode;
            mod try_overwrite;
        }
    }
    #[cfg(windows)]
    mod windows {
        mod local_socket_security_descriptor;
        mod named_pipe;
        mod tokio_named_pipe;
    }
}

mod local_socket;
#[cfg(feature = "tokio")]
mod tokio_local_socket;

#[cfg(feature = "tokio")]
mod tokio_unnamed_pipe;
mod unnamed_pipe;