bramble_common/
lib.rs

1//! Common Bramble types
2#![warn(missing_docs)]
3
4mod duplex;
5mod error;
6mod timer;
7
8pub mod transport;
9pub use duplex::{make_duplex, make_pipe, Duplex, ReadPipe, WritePipe};
10pub use error::{Error, Result};
11pub use timer::{sleep, timeout};