Compare commits

...

2 commits

Author SHA1 Message Date
4e5cced21c Remove seek requirement for writing 2024-07-08 16:32:07 -05:00
d3a0944e8c Updated version of pakutil 2024-07-08 16:22:18 -05:00
2 changed files with 2 additions and 2 deletions

View file

@ -1,7 +1,7 @@
[package] [package]
name = "luca_pak" name = "luca_pak"
edition = "2021" edition = "2021"
version = "0.1.0" version = "0.1.1"
description = """ description = """
A crate for parsing and modifying PAK files from the LUCA System engine by A crate for parsing and modifying PAK files from the LUCA System engine by
Prototype Ltd. Prototype Ltd.

View file

@ -207,7 +207,7 @@ impl Pak {
} }
/// Encode a PAK file into a byte stream. /// Encode a PAK file into a byte stream.
pub fn encode<T: Write + Seek>( pub fn encode<T: Write>(
&self, &self,
mut output: &mut T mut output: &mut T
) -> Result<(), PakError> { ) -> Result<(), PakError> {