casc-lib 0.2.0

Pure Rust library for reading World of Warcraft CASC archives
Documentation
1
2
3
4
5
6
7
8
9
10
//! Low-level CASC data archive and index file access.
//!
//! A CASC installation stores its data in numbered archive files (`data.NNN`) and
//! their companion index files (`.idx`). This module provides parsers and
//! memory-mapped readers for both.

/// Memory-mapped `data.NNN` archive reader.
pub mod data;
/// `.idx` index file parser and lookup table.
pub mod index;