#![doc = include_str!("../README.md")]
#![allow(
// I dislike this rule... We import things elsewhere, usually outside of
// modules themselves.
clippy::module_name_repetitions,
)]
#![cfg_attr(docsrs, feature(doc_cfg))]
pub mod errors;
pub mod fsemul;
pub mod mion;
#[cfg_attr(docsrs, doc(cfg(any(feature = "clients", feature = "servers"))))]
#[cfg(any(feature = "clients", feature = "servers"))]
pub mod net;