Skip to main content

casc_lib/config/
mod.rs

1//! CASC configuration file parsers.
2//!
3//! These modules parse the three config layers that describe a CASC installation:
4//! `.build.info` (product discovery), build config (key hashes and sizes), and
5//! CDN config (archive lists and index URLs).
6
7/// Build config parser - encoding/root/install key pairs and sizes.
8pub mod build_config;
9/// `.build.info` BPSV file parser - product discovery and CDN host selection.
10pub mod build_info;
11/// CDN config parser - archive hash lists and file index references.
12pub mod cdn_config;