Commit graph

7 commits

Author SHA1 Message Date
987a6ade9b
chore: Turn project structure into workspace 2022-11-18 10:44:01 +01:00
d500b01709
feat: Implement bundle writing and file injecting 2022-11-16 09:36:46 +01:00
c514f36bcb
fix: Fix parsing CSV dictionary
`csv_async`'s deserializer seems to only emit a few specific types
to the supplied visitor. Namely strings and 64 bit numbers. I was
not able to figure out why some numbers where considered floats.

So each visitor for the hash types needs to implement all of those
data types and convert them, if necessary.
2022-11-15 15:10:59 +01:00
18af90ec1f
feat: Implement directly loading Oodle library
Since I now found a way to obtain a version of the Oodle library
compiled for Linux, I don't need to bother with Wine anymore, and
can instead load the library directly.
This removes the need for the extra utility completely.

I still have to load the library at runtime, though, as Rust only
supports static linking, and I probably don't have a lincense to do
that with Oodle.
2022-11-13 23:23:00 +01:00
4b830d613b
feat: Implement raw file extraction 2022-11-05 10:31:59 +01:00
109eb8ffa2
feat: Implement bundle content listing 2022-11-03 20:26:19 +01:00
cf2503214b
feat: Implement bundle decompression
It does share a large portion of logic with the actual opening of
bundles. But trying to combine everything would only make things more
complex.
2022-11-01 17:35:47 +01:00