mirror of
https://github.com/NinjaCheetah/rustii.git
synced 2025-07-08 03:51:02 -04:00
The rustii CLI now offers setting decrypt/encrypt commands, as well as a WIP emunand install-title command. This command currently only supports installing single WADs and not a folder of WADs like WiiPy. To make EmuNANDs happen, library modules for parsing and editing setting.txt, uid.sys, and content.map have been added and have feature parity with libWiiPy. The basics of the library EmuNAND module also exist, offering the code for title installation and not much else yet.
9 lines
206 B
Rust
9 lines
206 B
Rust
// lib.rs from rustii (c) 2025 NinjaCheetah & Contributors
|
|
// https://github.com/NinjaCheetah/rustii
|
|
//
|
|
// Root level module that imports the feature modules.
|
|
|
|
pub mod archive;
|
|
pub mod nand;
|
|
pub mod title;
|