mirror of
https://github.com/G2-Games/lbee-utils.git
synced 2025-04-19 07:12:55 -05:00
Compare commits
2 commits
a93ba81859
...
c2cf2c6793
Author | SHA1 | Date | |
---|---|---|---|
c2cf2c6793 | |||
d67329bcc1 |
2 changed files with 2 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "luca_pak"
|
||||
edition = "2021"
|
||||
version = "0.1.2"
|
||||
version = "0.1.3"
|
||||
description = """
|
||||
An encoder/decoder for PAK archive files used in the LUCA System engine by
|
||||
Prototype Ltd.
|
||||
|
|
|
@ -67,7 +67,7 @@ impl Default for PakLimits {
|
|||
fn default() -> Self {
|
||||
Self {
|
||||
entry_limit: 10_000, // 10,000 entries
|
||||
size_limit: 10_000_000_000, // 10 gb
|
||||
size_limit: u32::MAX as usize, // 10 gb
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue