rvz 0.1.3

RVZ compression library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// SPDX-License-Identifier: LGPL-2.1-or-later OR GPL-2.0-or-later OR MPL-2.0
// SPDX-FileCopyrightText: 2024 Gabriel Marcano <gabemarcano@yahoo.com>

//! This crate contains routines to read Wii ISO internal headers.
//!
//! This has a companion cli application crate that will read an ISO file and print out its
//! information.

pub mod error;
pub mod prng;
pub mod region;
pub mod rvz;

pub use crate::error::Error;
pub use crate::rvz::HeaderRead;
pub use crate::rvz::Metadata;
pub use crate::rvz::Rvz;