mangaplus_parser/lib.rs
1//! This crate provides a convenience parser for use with mangaplus data.
2//!
3//! The organisation of this crate is zero. You get 1 function which consumes
4//! a byte reference and the rest of it is a pregenerated set of files, of
5//! which one is consumed instantly.
6pub mod reader;
7pub mod mangaplus;
8pub use mangaplus::*;