1 2 3 4 5 6 7 8 9 10
//! A ringbuff bridge between `std::io` and `futures::io`. #![cfg_attr(docsrs, feature(doc_cfg))] mod ringbuf; pub use ringbuf::*; #[cfg(feature = "async")] #[cfg_attr(docsrs, doc(cfg(feature = "async")))] pub mod pipe;