enfusion_pak 0.2.0

A library/cli for reading Enfusion game engine `.pak` files.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![doc = include_str!("../README.md")]

pub use parser::*;

/// Async VFS support
#[cfg(feature = "async_vfs")]
pub mod async_pak_vfs;
pub mod error;
/// VFS support
#[cfg(feature = "vfs")]
pub mod pak_vfs;
mod parser;
#[cfg(any(feature = "vfs", feature = "async_vfs"))]
pub use vfs;
pub use winnow;
#[cfg(feature = "vfs")]
pub mod wrappers;