Commit graph

160 commits

Author SHA1 Message Date
Chris Hennick
2725416c0d
chore: Fix a bug and inline deserialize for safety 2024-06-02 22:00:44 -07:00
Chris Hennick
eacc320fe0
chore: Add check for wrong-length blocks, and incorporate fixed-size requirement into the trait name 2024-06-02 21:48:21 -07:00
Chris Hennick
e3c81023a7
fix: Decode Zip-Info UTF8 name and comment fields (#159) 2024-06-02 11:52:20 -07:00
Chris Hennick
d5ff6d1e26
Revert tests of leap-second handling: we now just clamp them to 0..=58
Signed-off-by: Chris Hennick <4961925+Pr0methean@users.noreply.github.com>
2024-05-28 18:03:43 -07:00
Chris Hennick
73fc2fd85b
Handle leap-second inputs gracefully
Signed-off-by: Chris Hennick <4961925+Pr0methean@users.noreply.github.com>
2024-05-28 17:58:04 -07:00
Shun Sakai
2626d02494
fix: Change DateTime to not accept invalid days 2024-05-28 16:22:20 +09:00
Shun Sakai
83eccdf3e2
fix: Change maximum seconds for DateTime
The valid range of values for the seconds of the MS-DOS date and time
is 0 to 58. So, change `DateTime` to not accept after 58 seconds.
2024-05-28 15:00:13 +09:00
Chris Hennick
edbb7343f5
refactor: use a MIN_VERSION constant 2024-05-25 14:29:36 -07:00
Chris Hennick
40f20d8a6b
fix: lower default version to 4.5 and use the version-needed-to-extract where feasible. 2024-05-25 14:29:35 -07:00
Chris Hennick
699d10da71
style: cargo fmt --all 2024-05-24 22:05:39 -07:00
Chris Hennick
e6b2290f70
chore: Another tweak to ensure version_needed is applied 2024-05-24 21:58:26 -07:00
Chris Hennick
92012b9795
chore: Tweaks to make version_needed and version_made_by work with recently-merged changes 2024-05-24 21:55:18 -07:00
Chris Hennick
a462b859fa
Fix an off-by-one error in large-file detection
Signed-off-by: Chris Hennick <4961925+Pr0methean@users.noreply.github.com>
2024-05-24 13:06:12 -07:00
Chris Hennick
d63ad8ecaf
Merge branch 'master' into bulk-parsing 2024-05-24 13:04:03 -07:00
Chris Hennick
f90bdf76b8
Fix an off-by-one error in large-file detection
Signed-off-by: Chris Hennick <4961925+Pr0methean@users.noreply.github.com>
2024-05-24 13:03:45 -07:00
Chris Hennick
2a39a8e0a7
Fix an off-by-one error in large-file detection
Signed-off-by: Chris Hennick <4961925+Pr0methean@users.noreply.github.com>
2024-05-24 12:59:13 -07:00
Danny McClanahan
a769e9410e
Revert "interpose ZipRawValues into ZipFileData"
This reverts commit d8d4dee5cec372878259380fa347c0ffc6cca044.
2024-05-24 08:00:04 -04:00
Danny McClanahan
fe663b9ee6
tiny fix 2024-05-24 07:58:06 -04:00
Danny McClanahan
4a784b5636
interpose ZipRawValues into ZipFileData 2024-05-24 07:58:05 -04:00
Danny McClanahan
0b31d9846a
review comments 2 2024-05-24 07:54:41 -04:00
Danny McClanahan
a7fd5874cf
reduce visibility for all the blocks 2024-05-24 07:54:40 -04:00
Danny McClanahan
8d454d2277
nitpick 2024-05-24 07:54:40 -04:00
Danny McClanahan
21d07e192c
add ExtraFieldMagic and Zip64ExtraFieldBlock 2024-05-24 07:54:39 -04:00
Danny McClanahan
acb0a6f0c4
clarify the check being performed 2024-05-24 07:54:05 -04:00
Danny McClanahan
8fbc4039a8
lean more on the ::MAGIC trait constants 2024-05-24 07:54:04 -04:00
Danny McClanahan
41813d242c
move encrypted and data descriptor validation up higher 2024-05-24 07:53:16 -04:00
Danny McClanahan
cf2d980612
expose pub(crate) methods to convert compression methods 2024-05-24 07:53:15 -04:00
Danny McClanahan
03c92a1184
add to_and_from_le! macro 2024-05-24 07:52:31 -04:00
Danny McClanahan
7eb5907622
remove a lot of boilerplate for Block impls 2024-05-24 07:52:31 -04:00
Danny McClanahan
3fa0d84554
make Magic into a wrapper struct 2024-05-24 07:52:31 -04:00
Danny McClanahan
ad1d51d099
write file comment to central directory header 2024-05-24 07:52:30 -04:00
Danny McClanahan
ea308499af
bulk parsing and bulk writing
- use blocks for reading individual file headers
- remove unnecessary option wrapping for stream entries
- create Block trait
- add coerce method to reduce some boilerplate
- add serialize method to reduce more boilerplate
- use to_le! and from_le!
- add test case
- add some docs
- rename a few structs to clarify zip32-only
2024-05-24 07:52:25 -04:00
Shun Sakai
1e39276b2b
feat: Support mutual conversion between DateTime and MS-DOS pair 2024-05-24 19:36:08 +09:00
Chris Hennick
7d61377503
refactor: Change type of last_modified_time to Option<DateTime> 2024-05-23 14:15:38 -07:00
Chris Hennick
b0c666aa0c
chore: Continue to accept archives with invalid DateTime, and use now_utc() as default only when writing, not reading 2024-05-23 09:44:06 -07:00
Chris Hennick
7a34aa5f41
refactor!: Rename from_msdos to from_msdos_unchecked, make it unsafe, and add try_from_msdos (#145) 2024-05-23 09:04:53 -07:00
Chris Hennick
ef74a26dd5
Merge pull request #141 from sorairolake/deprecated-since
chore: Add `since` to `deprecated`
2024-05-23 03:44:38 +00:00
Shun Sakai
e3b12e313e
feat: Add fmt::Display for DateTime 2024-05-22 11:35:26 +09:00
Shun Sakai
00be854b11
feat: Implement more traits for DateTime
Support comparing, ordering and hashing.
2024-05-22 10:50:18 +09:00
Shun Sakai
e188a36d1c
chore: Add since to deprecated
Add the `since` field to the `deprecated` attribute for
`DateTime::from_time` and `DateTime::to_time`.
2024-05-22 09:57:23 +09:00
Shun Sakai
ac8b04c0f1
feat: Add TryFrom<DateTime> for OffsetDateTime 2024-05-21 15:38:39 +09:00
Chris Hennick
3afe549161
refactor: Convert impl TryInto<NaiveDateTime> for DateTime to impl TryFrom<DateTime> for NaiveDateTime (#136) 2024-05-19 11:51:20 -07:00
Chris Hennick
b7ac989013
refactor: is_dir only needs to look at the filename 2024-05-15 16:44:59 -07:00
Chris Hennick
09676e7bee
chore: Add missing ZipFileData::is_dir() method 2024-05-15 16:20:50 -07:00
Chris Hennick
3bf0301e39
feat: Add is_symlink method 2024-05-13 19:52:14 -07:00
Jake Shadle
224fc60a9b
Remove num_enum 2024-05-07 08:16:34 +02:00
Chris Hennick
845c3ec91f
refactor: Remove unused atomic module 2024-05-06 14:14:25 -07:00
Chris Hennick
0518194ae2
style: cargo fmt --all 2024-05-06 13:07:19 -07:00
Chris Hennick
3ff9428e66
Merge branch 'master' into aes-encryption3
Signed-off-by: Chris Hennick <4961925+Pr0methean@users.noreply.github.com>
2024-05-06 11:44:55 -07:00
Chris Hennick
61d56318bf
style: Fix fmt and clippy warnings 2024-05-06 11:24:46 -07:00