lotus_lib/cache_pair/
mod.rs

1/*!
2
3This module provides functionality to read and parse the cache pairs from the `Cache.Windows`
4directory. Note that a cache pair is a pair of `.toc` and `.cache` files that contain information
5about the contents of a package and the compressed data for the package, respectively.
6
7*/
8
9mod cache_pair;
10mod cache_pair_reader;
11
12pub use cache_pair::CachePair;
13pub use cache_pair_reader::CachePairReader;