tomolib 1.1.1

Library for reading, modifying, and extracting Tomodachi Life data formats.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Parsers and writers for the Nintendo first-party file formats found in
//! recent Switch titles (BYML, SARC, AINB, BNTX, BWAV, BARS, RSTBL, and the
//! MSBT/MSBP message formats), plus zstd (de)compression.
//!
//! Each format lives in its own module under [`formats`]. The usual entry
//! point is a `parse` constructor that reads a byte buffer, paired with a
//! serializer (`to_bytes`, `to_binary`, `write`) that produces one back.

mod error;
mod hashlist;

pub mod formats;

pub use error::{Error, Result};
pub(crate) use hashlist::murmur3_x86_32_seed0;