wowsunpack 0.35.0

Utility for interacting with World of Warships game assets
Documentation
1
2
3
4
5
6
7
//! Wrapper types that bridge data sources to the VFS abstraction.

/// In-memory PKG source. Pure Rust, works in any environment (wasm, embedded).
pub mod bytes;
/// Memory-mapped PKG source. Native only (uses memmap2).
#[cfg(feature = "vfs-mmap")]
pub mod mmap;