Compare commits

..

No commits in common. "4e5cced21c6b42099b193f51615c400bf9fc93a5" and "9e49b22b234ec067f3330a657dd776459582430f" have entirely different histories.

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.1" version = "0.1.0"
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>( pub fn encode<T: Write + Seek>(
&self, &self,
mut output: &mut T mut output: &mut T
) -> Result<(), PakError> { ) -> Result<(), PakError> {