1 2 3 4 5 6 7 8 9 10 11 12
#![doc = include_str!("../README.md")] #![warn(missing_docs)] pub mod input; pub mod output; /// Commonly re-exported types pub mod prelude { #[allow(ambiguous_glob_reexports)] pub use crate::{input::*, output::*, *}; pub use midix::prelude::*; }