PSArc-lib 0.0.1

A library to handle writing/parsing/unpacking/packing of Playstation Archive formats
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![allow(non_snake_case)]

/// ### Prelude
/// Prelude includes all the required modules for using PSArc-lib in a standard context
pub mod prelude;

/// ### Archive
/// The archive module contains structs and methods related to handling the root archive file
pub mod archive;

/// ### Traits
/// Contains all the traits associated with functions in this library
pub mod traits;