We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81b3fbb commit df2f1b3Copy full SHA for df2f1b3
crates/hexora_io/src/archive.rs
@@ -4,8 +4,8 @@ use std::fs;
4
use std::io::Read;
5
use std::path::{Path, PathBuf};
6
7
-const MAX_ARCHIVE_SIZE: u64 = 10 * 1024 * 1024; // 10MB
8
-const MAX_FILES_IN_ARCHIVE: usize = 1500;
+const MAX_ARCHIVE_SIZE: u64 = 50 * 1024 * 1024; // 50MB
+const MAX_FILES_IN_ARCHIVE: usize = 2500;
9
10
// When a zip is password-protected, we try "infected" as the password.
11
// This is hardcoded for now, but works for testing purposes.
0 commit comments