t2_bus 0.1.0

An inter- or intra-process message bus supporting publish/subscribe and request/response.
Documentation
#![doc = include_str!("../README.md")]

pub mod prelude;
pub mod transport;

pub(crate) mod client;
pub(crate) mod directory;
pub(crate) mod server;
pub(crate) mod topic;
pub(crate) mod protocol;
pub(crate) mod err;

#[cfg(debug_assertions)]
mod debug;
mod stopper;

#[macro_use]
extern crate lazy_static;
#[macro_use]
extern crate serde_derive;

#[cfg(test)]
pub mod test;