qpak-lib 1.0.0

qpak-lib: Unofficial Quake PAK file modification library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// SPDX-License-Identifier: MIT
//! # qpak-lib
//! Unoffical Quake PAK archive inspecton and modification library
//!
//! Provides an sync/async library for accessing and manipulating files in the PAK file format.
//!
//! ## Usage
//! Create a [PakManifest] using one of its constructors and then use it to iterator through or write the contents of a [PakFile].
//!
//! IO functions have both sync and async implementations. Sync functions are suffixed as such.

pub mod error;
pub mod pak;

pub use crate::{
    pak::{PakFile, PakManifest},
    error::{Error, Result},
};