enfusion_pak 0.1.0

A library/cli for reading Enfusion game engine `.pak` files.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use thiserror::Error;
use winnow::error::ContextError;
use winnow::error::StrContext;

#[derive(Debug, Error)]
pub enum PakError {
    #[error("I/O error occurred")]
    IoError(#[from] std::io::Error),

    #[error("Parser error")]
    ParserError(ContextError<StrContext>),
}