Commit graph

385 commits

Author SHA1 Message Date
Chris Hennick
c9cb506bc9
Update docs, remove some deprecated methods, and substitute crate version into docstring 2024-04-22 17:23:44 -07:00
Chris Hennick
e412d8b6df
Restore support for Path and fix handling of ".." 2024-04-20 14:05:11 -07:00
Chris Hennick
81e44d1d41
Refactor: replace contains_file_named with index_for_name 2024-04-20 12:31:00 -07:00
Chris Hennick
c22afbf3c7
cargo fmt --all 2024-04-20 12:00:01 -07:00
Chris Hennick
16b66841b3
Add contains_file_named 2024-04-20 11:58:18 -07:00
Chris Hennick
174825229c
Change crate name to "zip" per https://github.com/zip-rs/zip/issues/446#issuecomment-2063837388 2024-04-19 18:50:27 -07:00
Wyatt Herkamp
61afe4dad9
Added ExtendedFileOptions 2024-04-15 16:32:07 -04:00
Chris Hennick
c4f91c2895 cargo fmt --all 2024-04-14 08:12:07 -07:00
Chris Hennick
9438bef0f7 Replace AtomicU64 with OnceLock 2024-04-14 07:53:32 -07:00
Chris Hennick
4f3f2d1fca Bug fix: LZMA state is large, so put it in a Box 2024-04-11 13:28:37 -07:00
Chris Hennick
7f8311efea Add support for decompressing LZMA 2024-04-11 13:03:57 -07:00
Chris Hennick
161bd87724 Refactor to use boxed slices instead of Vec where possible 2024-04-08 12:09:23 -07:00
Chris Hennick
cdfd36a1cc Fix another Clippy warning 2024-04-08 11:02:11 -07:00
Chris Hennick
804fb27309 Fix Clippy warning 2024-04-08 10:47:35 -07:00
Chris Hennick
384afcda2a Switch from String to Box<str> for metadata 2024-04-08 10:29:17 -07:00
Chris Hennick
dec73ef5c1 Merge branch 'tune_fuzz'
# Conflicts:
#	src/read.rs
2024-03-13 13:09:14 -07:00
Chris Hennick
ece098d393 Make InvalidPassword a kind of ZipError 2024-03-13 13:05:54 -07:00
Chris Hennick
6d8de51bea Bug fix: expected error result now happens sooner 2024-03-11 13:32:58 -07:00
Chris Hennick
6338242154 Bug fix: dir_end was being set incorrectly 2024-03-07 15:23:56 -08:00
Chris Hennick
5e03f43f9a Fix failing tests other than deflate64 bug 25 2024-03-07 15:16:04 -08:00
Chris Hennick
e23ba853d3 Remove comment field from Shared to avoid unnecessary copying 2024-03-07 14:43:40 -08:00
Chris Hennick
8efd2339cf Overhaul read logic to perform *all* validations before accepting a central directory as the real one 2024-03-07 14:34:40 -08:00
Chris Hennick
be49def529 Replace hard-coded byte array with data file 2024-03-06 12:34:51 -08:00
Chris Hennick
ce11179be3 Add test case for https://github.com/anatawa12/deflate64-rs/issues/25 2024-03-04 17:35:12 -08:00
Chris Hennick
c1afa95706 Refactor: use a zip file with valid metadata 2024-03-03 18:01:31 -08:00
Chris Hennick
f4d5ad7b49 Bug fix: can't run new test if deflate64 is disabled 2024-03-03 18:00:05 -08:00
Chris Hennick
80876aa7e4 Bug fix: incorrect assertion for new test 2024-03-03 17:36:58 -08:00
Chris Hennick
fe3821c4c0 Add test case to reproduce deflate64 error 2024-03-03 17:29:27 -08:00
anatawa12
4812d77e5b
Merge remote-tracking branch 'zip-next/master' into deflate64-next 2023-10-13 19:58:44 +09:00
anatawa12
70c0b164be
chore: use streaming in deflate64 crate 2023-08-04 22:55:48 +09:00
anatawa12
065058d30d
feat: support deflate64 compression with deflate64 crate 2023-08-04 21:52:08 +09:00
Chris Hennick
3cb826fe8b
Make functions const where possible 2023-06-07 22:15:06 -07:00
Chris Hennick
2407ef95c6
Fixes and refactors for no-features build 2023-05-30 18:17:59 -07:00
Chris Hennick
9ec0ddc5ca
Add zlib-ng 2023-05-30 09:18:26 -07:00
Chris Hennick
46333b2d61
Fix Clippy warning: rev().next() -> next_back() 2023-05-21 11:39:22 -07:00
Chris Hennick
5d16fa250c
Revert "Wrap extra-data field in an Option, to save Arc overhead when empty"
This reverts commit 1df9186527.
2023-05-15 21:25:34 -07:00
Chris Hennick
1df9186527
Wrap extra-data field in an Option, to save Arc overhead when empty 2023-05-15 20:23:46 -07:00
Chris Hennick
df3dfc1991
Change Rc to Arc since sharing across ZipWriter instances is possible 2023-05-14 10:45:13 -07:00
Chris Hennick
dbf39339de
Wrap extra data in Rc so FileOptions and ZipFileData can be cloned faster 2023-05-14 09:20:15 -07:00
Chris Hennick
21ff795071
Additional sanity checks on ZIP64 footer 2023-05-14 08:28:52 -07:00
Chris Hennick
4faebb4468
Overhaul extra-data interface 2023-05-13 13:59:14 -07:00
Chris Hennick
9b65b8a523
Bug fix 2023-05-12 09:07:42 -07:00
Chris Hennick
dd83186928
Bug fixes: validation was too stringent 2023-05-12 08:54:00 -07:00
Chris Hennick
546693a6c7
Test allowing ZIP64 magic with the sanity checks 2023-05-12 08:36:33 -07:00
Chris Hennick
70db61c26e
Perform sanity checks when both ZIP32 and ZIP64 footers are found 2023-05-12 08:28:30 -07:00
Chris Hennick
5cd0b75209
Reformat 2023-05-11 20:17:01 -07:00
Chris Hennick
332d09f51a
Bug fix 2023-05-11 20:14:26 -07:00
Chris Hennick
3c44f2812c
Remove unused imports 2023-05-11 19:28:54 -07:00
Chris Hennick
dc351196e2
Bug fix: don't allow writing files with certain ZIP64 magic strings in their names 2023-05-11 18:52:41 -07:00
Chris Hennick
ebb4e01329
Slightly stronger assertion 2023-05-11 10:13:09 -07:00