nte_patcher 0.2.3

Rust implementation of NTE PatcherSDK
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![warn(missing_docs)]
//! NTE Patcher SDK
//!
//! A high-performance, concurrent downloading and patching SDK for NTE game assets.

pub mod cas;
pub mod config;
pub mod crypto;
pub mod download;
pub mod error;
pub mod manager;
pub mod mmap;
pub mod model;
pub mod parser;
pub mod retry;
pub mod unzip;
pub mod verify;