Added theming command to rustwii CLI

This version is more capable than the version in WiiPy, and supports extracted and repacking containers as part of theme application. This was not implemented in WiiPy because the LZ77 compression required was far too slow to make it feasible, but here in Rust the compression is totally reasonable to actually use.
This commit is contained in:
2026-02-26 16:42:35 -05:00
parent 23699a518d
commit 02db260138
8 changed files with 508 additions and 45 deletions

View File

@@ -39,3 +39,5 @@ reqwest = { version = "0", features = ["blocking"] }
rand = "0"
walkdir = "2"
tempfile = "3"
rust-ini = "0"
zip = "8"