orthrus_ncompress/
lib.rs

1//! This crate contains modules for [Orthrus](https://crates.io/crates/orthrus) that add support for
2//! Nintendo compression formats that are shared across multiple games or systems.
3
4#![cfg_attr(not(feature = "std"), no_std)]
5
6#[cfg(not(feature = "std"))]
7mod no_std {
8    extern crate alloc;
9    pub use alloc::boxed::Box;
10    pub use alloc::{format, vec};
11}
12
13// All public modules
14pub mod yay0;
15pub mod yaz0;
16
17// For internal use only right now
18mod algorithms;
19
20// Prelude, for convenience
21pub mod prelude;