Compare commits

..

No commits in common. "c2cf2c679349433edfdae44d76abb232f322ddfe" and "a93ba818593137ed17f99e2983777cf25bbb6fb8" 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.3" version = "0.1.2"
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: u32::MAX as usize, // 10 gb size_limit: 10_000_000_000, // 10 gb
} }
} }
} }