mirror of
https://github.com/ziglang/zig.git
synced 2026-01-21 23:05:24 +00:00
std.Build.Cache: bump manifest_file_size_max to 100M
Some users are hitting this limit. I think it's primarily due to not deduplicating (solved in the previous commit) but this seems like a better limit regardless.
This commit is contained in:
parent
2f4bbd6c63
commit
950359071b
@ -122,7 +122,7 @@ pub const HexDigest = [hex_digest_len]u8;
|
||||
|
||||
/// This is currently just an arbitrary non-empty string that can't match another manifest line.
|
||||
const manifest_header = "0";
|
||||
const manifest_file_size_max = 50 * 1024 * 1024;
|
||||
const manifest_file_size_max = 100 * 1024 * 1024;
|
||||
|
||||
/// The type used for hashing file contents. Currently, this is SipHash128(1, 3), because it
|
||||
/// provides enough collision resistance for the Manifest use cases, while being one of our
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user