casc-storage 0.4.3

CASC (Content Addressable Storage Container) implementation for local game file storage
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Index file parsing and management for CASC storage

mod async_index;
mod combined_index;
mod group_index;
mod idx_parser;
mod index_file;
mod sorted_index;

pub use async_index::{
    AsyncIndex, AsyncIndexConfig, AsyncIndexManager, IndexStats as AsyncIndexStats,
};
pub use combined_index::{CombinedIndex, IndexStats};
pub use group_index::GroupIndex;
pub use idx_parser::IdxParser;
pub use index_file::{IndexFile, IndexVersion};
pub use sorted_index::SortedIndex;