Bumped version

This commit is contained in:
G2-Games 2024-07-11 22:39:36 -05:00
parent 002eda0612
commit 3bd0980313
3 changed files with 5 additions and 5 deletions

View file

@ -3,7 +3,7 @@ resolver = "2"
members = [ members = [
"cz", "cz",
"experimental", "experimental",
"luca_pak", "luca_pak", "testing",
] ]
[workspace.package] [workspace.package]

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.2"
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

@ -263,9 +263,9 @@ impl Pak {
remainder = 0; remainder = 0;
} }
println!("entry len {}", entry.data.len()); //println!("entry len {}", entry.data.len());
println!("remainder {}", remainder); //println!("remainder {}", remainder);
println!("block_offset {} - expected offset {}", block_offset, entry.offset); //println!("block_offset {} - expected offset {}", block_offset, entry.offset);
output.write_all(&entry.data)?; output.write_all(&entry.data)?;
output.write_all(&vec![0u8; remainder])?; output.write_all(&vec![0u8; remainder])?;
block_offset += block_size as u32; block_offset += block_size as u32;