From 6f12fec62f7f30c9e8a2270bac808a896e0a3113 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Sat, 6 Aug 2022 18:06:06 -0400 Subject: [PATCH] Make sqpack module public again, as I forgot it's used for benchmarks. --- src/lib.rs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 90aee86..f05255a 100755 --- a/src/lib.rs +++ b/src/lib.rs @@ -9,7 +9,8 @@ pub mod repository; /// Reading and writing the boot data repository. pub mod bootdata; -mod sqpack; +/// Common methods and structures relating to the SqPack data format. +pub mod sqpack; /// Reading and writing SqPack index files. pub mod index; @@ -48,4 +49,7 @@ pub mod installer; pub mod exh; /// Reading Excel data files (EXD). -pub mod exd; \ No newline at end of file +pub mod exd; + +// Reading Havok XML sidecar files. +pub mod skeleton; \ No newline at end of file