casc-rs-0.1.1 has been yanked.
casc-rs
A pure Rust implementation of a Casc Storage Handler, inspired by the version ported to C# from C++. This crate allows you to read and extract files from Blizzard's CASC storage format.
Note: This library currently only supports CASC storages that use the TVFS root file format.
Crates
- casc-rs: The core library for reading CASC storages.
- Note: Types such as
CascFileInfoexpose all fields via getters only; fields are private and setters are restricted to crate-only visibility.
- Note: Types such as
Usage
Add to your Cargo.toml
[]
= 0.1
Example: Listing and Extracting Files
use CascStorage;
use File;
use Write;