lotus_lib/
lib.rs

1/*!
2
3# lotus-lib
4
5This is a Rust library for reading data from Warframe's files stored in the
6`Cache.Windows` folder. Data stored in these cache files contains compressed 
7data in a directory-like structure.
8
9## Dependencies
10
11This library depends on `oodle-sys` which is a wrapper around
12`liboo2corelinux64.so` which in turn needs to be installed on your system.
13You can get it by following the instructions here:
14<https://github.com/sehnryr/get-oodle-lib>
15
16## Credits
17
18This library is based on the work of [LotusLib](https://github.com/Puxtril/LotusLib)
19by [Puxtril](https://github.com/Puxtril). The original library is written in C++.
20
21*/
22
23pub mod cache_pair;
24pub mod compression;
25pub mod package;
26pub mod toc;