Compare commits

..

2 commits

Author SHA1 Message Date
c2cf2c6793 Fixed size limit for PAK files 2024-09-19 10:09:46 -05:00
d67329bcc1 Version bump, v0.1.3 2024-09-19 09:57:55 -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.2" version = "0.1.3"
description = """ description = """
An encoder/decoder for PAK archive files used in the LUCA System engine by An encoder/decoder for PAK archive files used in the LUCA System engine by
Prototype Ltd. Prototype Ltd.

View file

@ -67,7 +67,7 @@ impl Default for PakLimits {
fn default() -> Self { fn default() -> Self {
Self { Self {
entry_limit: 10_000, // 10,000 entries entry_limit: 10_000, // 10,000 entries
size_limit: 10_000_000_000, // 10 gb size_limit: u32::MAX as usize, // 10 gb
} }
} }
} }