suave 0.2.3

Multi-process communication utility library.
Documentation
//! The library for all things local communication. We support a variety of things for
//! multi-process communication and interprocess **communication**.
//!
//! This includes **lock files**, **named pipes** like in the `pipe` crate.
//!
//! ## Features
//!  * `queue` - Implements MessageQueue on linux systems.
//!
//! To contribute head over to github, all help is welcome!

/// Anything pipe related, including lock files, shared pipes etc...
pub mod pipe;

/// Anything related to clipboard IPC.
pub mod clipboard;

/// Anything related to queues (FIFO implementation)
#[cfg(feature = "queue")]
pub mod queue;