sourcepak 0.3.0

A library for reading and writing Source engine package files.
Documentation
1
2
3
4
5
6
7
8
9
//! Common utilities for the library.
//!
//! Includes file handling, format detection, and, when the `revpk` feature is enabled, support for the [LZHAM alpha](https://github.com/richgel999/lzham_alpha) compression format.

pub mod detect;
pub mod file;
pub mod format;
#[cfg(feature = "revpk")]
pub mod lzham;