1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Extracts and builds Nintendo DS ROMs.

#![warn(missing_docs)]

/// Compression algorithms.
pub mod compress;
/// CRC checksum algorithms.
pub mod crc;
/// Encryption algorithms.
pub mod crypto;
/// ROM structs.
pub mod rom;
/// String utilities.
pub mod str;