Commit graph

938 commits

Author SHA1 Message Date
Chris Hennick
24752c2822
Bump version to 0.7.5 2023-05-12 12:43:24 -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
c90a8fd3cf
Reformat 2023-05-12 08:40:06 -07:00
Chris Hennick
7bc245d7aa
Restore old write test cases 2023-05-12 08:38:12 -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
5a11cbeaee
Bug fix 2023-05-11 21:02:51 -07:00
Chris Hennick
93a5be27ff
Bug fix 2023-05-11 20:49:42 -07:00
Chris Hennick
2e257141e6
Enable js feature (needed for wasm32-unknown-unknown target) 2023-05-11 20:35:44 -07:00
Chris Hennick
609865ba75
Increase read fuzzing 10x since write fuzzing is the bottleneck 2023-05-11 20:35:01 -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
fba2b971ae
Bug fix: test files were truncated 2023-05-11 20:11:44 -07:00
Chris Hennick
3c44f2812c
Remove unused imports 2023-05-11 19:28:54 -07:00
Chris Hennick
bf867c5012
Bug fix: skip invalid filenames during write fuzz 2023-05-11 19:25:32 -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
Chris Hennick
06b89f93ea
Fix a failing unit test 2023-05-11 09:59:56 -07:00
Chris Hennick
ad26a3f7f9
Bug fix 2023-05-11 09:39:18 -07:00
Chris Hennick
2ad4c20681
Reformat and fix Clippy warning 2023-05-11 09:35:12 -07:00
Chris Hennick
8c6816fb33
Bug fixes: file can't be ZIP64 if CDR start is after CDR end 2023-05-11 09:33:06 -07:00
Chris Hennick
61502b22a7
Increase fuzz_write jobs to reproduce a recent failure 2023-05-10 19:45:13 -07:00
Chris Hennick
bfe274a779
Bug fix 2023-05-10 19:36:04 -07:00
Chris Hennick
5e9ccfb27d
Upload failed fuzz inputs if any 2023-05-10 19:34:15 -07:00
Chris Hennick
cfa91e75b0
Reformat 2023-05-10 16:34:57 -07:00
Chris Hennick
f17012ca63
Bug fix: scope Hasher and DefaultHasher imports to the configs that use them 2023-05-10 16:32:12 -07:00
Chris Hennick
9b0e620c50
Dump full encryption key while testing or fuzzing 2023-05-10 16:31:06 -07:00
Chris Hennick
a963e9ff68
Merge pull request #8 from nickbabcock/disable-default-zstd
Support zstd in Wasm by disabling default features
2023-05-10 15:31:21 -07:00
Chris Hennick
05c59a5a31
Merge branch 'master' into disable-default-zstd 2023-05-10 14:55:19 -07:00
Chris Hennick
3af7f187d7
Strengthen fuzz_write: can now close and reopen before copying 2023-05-10 14:54:21 -07:00
Chris Hennick
b3bb092033
Merge branch 'master' into disable-default-zstd 2023-05-10 14:28:03 -07:00
Chris Hennick
6be75a9f04
Enable parallel fuzzing 2023-05-10 14:22:57 -07:00
Chris Hennick
7cc3c4ba27
Merge branch 'master' into disable-default-zstd 2023-05-10 13:11:39 -07:00
Chris Hennick
3f8e7ec12c
Bump version to 0.7.4 2023-05-10 13:06:55 -07:00
Chris Hennick
bb85ef1de1
Update dependencies 2023-05-10 13:06:15 -07:00
Chris Hennick
ab302b20b7
Reformat 2023-05-10 13:04:54 -07:00
Chris Hennick
7c39dbd4c2
Bug fix 2023-05-10 13:01:01 -07:00
Chris Hennick
82cd28af3c
Reformat 2023-05-10 12:55:20 -07:00
Chris Hennick
9efec6b61f
Fix merge 2023-05-10 12:53:30 -07:00
Nick Babcock
822a734ae4
Support zstd in Wasm by disabling default features
Use case: creating zstd zips in Wasm

Currently it is not possible to create zstd zips in Wasm due to the default
`zdict_builder` needing additional code that will cause compilation to fail for
wasm32-unknown-unknown: https://github.com/gyscos/zstd-rs/issues/210

Since the zip crate's zstd implementation does not use anything from the
`zdict_builder` feature, I've disabled it.

I've gone a step further and disabled the other features as well (`arrays` and
`legacy`), as they are either unused (`arrays`) or a legacy format from 7 years
ago that predates when the zip format supported zstd.

So far this patch has been working well for the Wasm application, and figured I
should upstream it.
2023-05-09 20:47:16 -05:00
Chris Hennick
5bb40012d2
WIP: Fix upstream merge 2023-05-08 19:37:55 -07:00
Chris Hennick
b179709639
Bug fix: derive Arbitrary for ZipCryptoKeys 2023-05-08 19:07:42 -07:00
Chris Hennick
6c4ae5333a
Fix merge 2023-05-08 18:55:28 -07:00
Chris Hennick
89989e02a3
Reformat 2023-05-08 18:54:35 -07:00
Chris Hennick
67bfe53d65
Merge upstream version 0.6.5 2023-05-08 18:54:10 -07:00
Plecra
13a19f682f
Merge pull request #360 from jturner314/msrv-in-manifest
Add rust-version field to Cargo.toml
2023-05-08 21:30:15 +01:00
Plecra
b76b259ed0
Merge pull request #350 from aquacash5/redundant-tests
Remove redundant tests
2023-05-08 21:25:44 +01:00
Marli Frost
80b8d1eced publish 0.6.5 2023-05-06 15:50:59 +01:00
Marli Frost
2eeb47ce56 add support for writing files with PKWARE encryption 2023-05-06 15:48:52 +01:00