1//! Extras for the micro message passing library _ump-ng_. 2 3#![cfg_attr(docsrs, feature(doc_cfg))] 4 5pub mod client; 6pub mod server; 7 8pub use ump_ng::*; 9 10// vim: set ft=rust et sw=2 ts=2 sts=2 cinoptions=2 tw=79 :