| Crates.io | rustlol |
| lib.rs | rustlol |
| version | 0.1.1 |
| created_at | 2025-07-27 07:55:47.646246+00 |
| updated_at | 2025-08-07 10:45:41.300615+00 |
| description | A wad files lib |
| homepage | |
| repository | https://github.com/qwbpro/rustlol.git |
| max_upload_size | |
| id | 1769811 |
| size | 129,840 |
the lib can extract or make wad version 3.4 It is a micro reconstruction of cslol https://github.com/LeagueToolkit/cslol-manager
git clone https://github.com/qwbpro/rustlol.git
cd rustlol
cargo test
cargo add rustlol
use rustlol::extract_wad;
use rustlol::make_wad;
fn main() -> std::result::Result<(), Error>{
// if hash path is null hash path = ./
// dst path is null dst path = ./
extract_wad("a wad file path", "hash path", "dst path")?
}
see https://docs.rs/