Commit graph

911 commits

Author SHA1 Message Date
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
Chris Hennick
88f4788758
Bump version to 0.7.3 2023-05-05 11:38:56 -07:00
Chris Hennick
4d5e9ad718
Update CHANGELOG 2023-05-05 11:37:48 -07:00
Chris Hennick
006fd57bf5
Bug fix: reject file that's valid but unsupported as ZIP64 2023-05-05 09:25:52 -07:00
Chris Hennick
0beb5b4294
Bug fixes and formatting 2023-05-05 09:15:46 -07:00
Chris Hennick
29a3f30a72
Bug fix: try decoding file as ZIP32 if it's not valid as ZIP64 2023-05-05 09:11:49 -07:00
Chris Hennick
6e7ff280e9
Revert "Perform an extra sanity check on ZIP64 detection"
This reverts commit 475b55df1d.
2023-05-04 20:34:44 -07:00
Chris Hennick
475b55df1d
Perform an extra sanity check on ZIP64 detection 2023-05-04 20:29:26 -07:00
Chris Hennick
44d179355c
Reformat 2023-05-04 16:35:04 -07:00
Chris Hennick
b1ac3912db
Test opening for append and creating another copy 2023-05-04 16:22:19 -07:00
Chris Hennick
08ec7ca710
Remove extra data from struct since we're not using it 2023-05-04 16:18:48 -07:00
Chris Hennick
2f87bd6cfc
Bump version to 0.7.2 2023-05-04 15:03:25 -07:00
Chris Hennick
6003a2cce5
Bug fix 2023-05-04 12:46:46 -07:00
Chris Hennick
b8d393a628
Bug fix 2023-05-04 12:43:28 -07:00
Chris Hennick
5e0b216320
Bug fix 2023-05-04 12:34:31 -07:00
Chris Hennick
697578b38d
Add assertions for state flags in finish_file 2023-05-04 12:26:10 -07:00
Chris Hennick
ea25dbd954
Bug fix 2023-05-04 12:23:14 -07:00
Chris Hennick
425a05e1c8
Revert "Bug fix"
This reverts commit 6e67bfcda5.
2023-05-04 12:14:30 -07:00
Chris Hennick
6e67bfcda5
Bug fix 2023-05-04 12:13:19 -07:00
Chris Hennick
e2f9d25b1b
Bug fix 2023-05-04 12:07:34 -07:00
Chris Hennick
909473caea
Bug fix 2023-05-04 12:06:23 -07:00
Chris Hennick
31998d90e9
Use unwrap to check that abort_file never fails 2023-05-04 11:45:33 -07:00
Chris Hennick
e8208dda87
Triple write-fuzz duration to ensure remaining bugs are caught 2023-05-04 11:29:47 -07:00
Chris Hennick
26bf30fc25
Bug fix: abort file if switch_to fails 2023-05-04 11:12:01 -07:00
Chris Hennick
a41c92d164
Refactor: don't need to be mutable during prepare_next_writer 2023-05-04 10:48:21 -07:00
Chris Hennick
55d82a455c
Refactor: rename prepare_switch_to to prepare_next_writer 2023-05-04 10:47:33 -07:00
Chris Hennick
bb025ef195
Bug fix 2023-05-04 10:46:56 -07:00
Chris Hennick
f165de2269
Update doc comment and CHANGELOG 2023-05-04 10:25:28 -07:00