epic_manifest_parser_rs/
lib.rs

1pub mod manifest;
2pub mod reader;
3pub mod error;
4
5pub type ParseResult<T> = Result<T, error::ParseError>;