casc_lib/storage/mod.rs
1//! Low-level CASC data archive and index file access.
2//!
3//! A CASC installation stores its data in numbered archive files (`data.NNN`) and
4//! their companion index files (`.idx`). This module provides parsers and
5//! memory-mapped readers for both.
6
7/// Memory-mapped `data.NNN` archive reader.
8pub mod data;
9/// `.idx` index file parser and lookup table.
10pub mod index;