1
2
3
4
5
6
7
8
9
10
11
12
13
/*!

This module provides functionality to read and parse the cache pairs from the `Cache.Windows`
directory. Note that a cache pair is a pair of `.toc` and `.cache` files that contain information
about the contents of a package and the compressed data for the package, respectively.

*/

mod cache_pair;
mod cache_pair_reader;

pub use cache_pair::CachePair;
pub use cache_pair_reader::CachePairReader;