rustlol 0.1.0

A wad files lib
Documentation

Wad lib

the lib can extract or make wad version 3.4 It is a micro reconstruction of cslol https://github.com/LeagueToolkit/cslol-manager

Prerequisites

Build Instructions

  1. Clone this repository:
git clone https://github.com/qwbpro/rustlol.git

cd rustlol

cargo test

How to use

 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")?
    } 

MORE

see https://docs.rs/