You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bromine/src/lib.rs

14 lines
276 B
Rust

//! This project provides an ipc server and client implementation using
//! messagepack. All calls are asynchronous and event based.
#[cfg(test)]
mod tests;
pub mod error;
mod events;
mod ipc;
pub use events::event::Event;
pub use ipc::builder::IPCBuilder;
pub use ipc::*;