ringbuff/
lib.rs

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