Skip to main content

cat_dev/
lib.rs

1#![doc = include_str!("../README.md")]
2#![allow(
3	// I dislike this rule... We import things elsewhere, usually outside of
4  // modules themselves.
5	clippy::module_name_repetitions,
6)]
7#![cfg_attr(docsrs, feature(doc_cfg))]
8
9pub mod errors;
10pub mod fsemul;
11pub mod mion;
12#[cfg_attr(docsrs, doc(cfg(any(feature = "clients", feature = "servers"))))]
13#[cfg(any(feature = "clients", feature = "servers"))]
14pub mod net;