Marli Frost
e4503a312a
docs: remove maintenance warning from the README. (im baaack)
2023-02-01 14:15:02 +00:00
Marli Frost
f7dcc666b7
release: 0.6.4
2023-02-01 14:10:33 +00:00
Plecra
d8cefbe72f
Merge pull request #330 from aquacash5/try-from-datetime
...
Implement TryFrom<OffsetDateTime> for DateTime
2023-02-01 14:07:15 +00:00
Marli Frost
42eabc9e33
fix: update references to old from_time API
2023-02-01 14:01:53 +00:00
Kyle Bloom
ccd20c118e
fix: Unused import with time feature
2023-02-01 13:58:15 +00:00
Kyle Bloom
ab2800b4d8
chore: Move use for TryInto to top
2023-02-01 13:58:15 +00:00
Kyle Bloom
c2adaf7ee0
fix: Use try into implementation for from_time
2023-02-01 13:58:15 +00:00
Kyle Bloom
3f770178ec
fix: Change error type to unit-like struct
2023-02-01 13:58:15 +00:00
Kyle Bloom
5726a07a76
feat: Move from_time to try_from
...
Moves from_time function to TryFrom<OffsetDateTime>
2023-02-01 13:58:15 +00:00
Plecra
ac3576c888
Merge pull request #338 from aquacash5/fix-clippy-issues
...
Fix clippy issues
2023-02-01 13:55:25 +00:00
Kyle Bloom
9a577d09fb
Merge branch 'zip-rs:master' into fix-clippy-issues
2023-02-01 10:07:13 +00:00
Kyle Bloom
503eda67c3
fix: Clippy should implement trait
2023-01-31 17:36:06 +00:00
Kyle Bloom
f3d683a64c
fix: Clippy needless borrow
2023-01-31 17:32:55 +00:00
Kyle Bloom
03f5009c34
fix: Clippy uninlined format args
2023-01-31 17:29:34 +00:00
Plecra
be73175dd0
Merge pull request #333 from lnicola/time-features
...
Disable `time` features
2023-01-30 19:29:36 +00:00
Laurențiu Nicola
94b183b023
Add a changelog
2023-01-30 21:21:44 +02:00
Laurențiu Nicola
f4cad8adb4
Disable time features
2023-01-30 21:21:44 +02:00
Alexander Zaitsev
95c7287378
Merge pull request #337 from Mik-pe/master
...
Detect insufficient CentralDirectoryEnd record
2023-01-30 21:52:15 +03:00
Mikael Pettersson
3fc54cf68c
feat: Detect insufficient Dir record size
...
- Per zip spec 4.4.1.4 (https://pkware.cachefly.net/webdocs/casestudies/APPNOTE.TXT )
- If a CentralDirectoryEnd record field cannot hold the
required data, a ZIP64 record must exist and the
field will be set to -1(0xFFFF || 0xFFFFFFFF)
- Previously these archives were incorrectly detected as multi-disk
2023-01-30 11:13:01 +01:00
Alexander Zaitsev
0dcc40bee0
Merge pull request #336 from jkasari/sizeDocs
...
Add units to the size documentation
2023-01-20 06:04:59 +03:00
jkasari
7b83591f26
Add units to the size documentation.
...
The documentation did not list what it meant by "size". I changed it to
specify that it is returning the size in bytes.
2023-01-19 18:55:42 -08:00
Plecra
f6357c5993
Merge pull request #322 from wyatt-herkamp/master
...
Clippy Warnings Patch
2022-11-14 18:15:25 +00:00
Wyatt Herkamp
efd7f934ca
Merge remote-tracking branch 'origin/master'
...
# Conflicts:
# src/read.rs
2022-10-13 07:53:55 -04:00
Wyatt Herkamp
1c5cd4ffda
Fixed new Clippy Warnings
2022-10-13 07:51:02 -04:00
Wyatt Herkamp
2b9efe97ba
Fixed new Clippy Warnings
2022-10-13 07:44:26 -04:00
Wyatt Herkamp
d59adf0990
Fixed new Clippy Warnings
2022-10-13 07:44:25 -04:00
Wyatt Herkamp
24caeaac27
Make github ci use 1.59 for time depend and fix two clippy warnings
2022-10-13 07:44:21 -04:00
Wyatt Herkamp
f4bbaf8434
hopefully a depend fix
2022-10-13 07:44:21 -04:00
Alexander Zaitsev
5737927dbb
Merge pull request #317 from NobodyXu/optimize
...
Optimize `ZipArchive::extract`
2022-10-13 13:26:24 +03:00
Alexander Zaitsev
1774bb872b
doc: update README
...
- bump MSRV
2022-10-13 13:03:08 +03:00
Alexander Zaitsev
a06b947ec5
feat: bump MSRV
...
- bump MSRV in CI
2022-10-13 13:02:31 +03:00
Alexander Zaitsev
ecbd2ce5c2
feat(release): prepare to 0.6.3 release
...
- update library version
- update README
Tested:
- No
2022-10-13 11:53:17 +02:00
Wyatt Herkamp
e2ff935aaf
Fixed new Clippy Warnings
2022-10-07 13:20:50 -04:00
Wyatt Herkamp
89e84e1032
Fixed new Clippy Warnings
2022-09-27 13:30:55 -04:00
Wyatt Herkamp
13084ef732
Make github ci use 1.59 for time depend and fix two clippy warnings
2022-09-12 18:53:15 -04:00
Wyatt Herkamp
3622e8f682
hopefully a depend fix
2022-09-12 10:26:39 -04:00
Jiahao XU
80005fd2e1
Optimize inner
of ZipArchive::extract
...
Rm generics in `inner`
Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com>
2022-07-20 23:54:04 +10:00
Jiahao XU
6402eb0d22
Avoid dup monomorphization in ZipArchive::extract
...
Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com>
2022-07-20 23:50:34 +10:00
Jiahao XU
199796cbbf
Rm unnecessary p.exist()
in ZipArchive::extract
...
Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com>
2022-07-20 23:48:48 +10:00
Alexander Zaitsev
bb230ef56a
Merge pull request #311 from striezel/dependency-updates
...
chore: update dependencies (pbkdf2 0.11.0, flate2 1.0.23)
2022-05-03 20:52:52 +03:00
Dirk Stolle
c65092c7c9
chore: update dependencies (pbkdf2 0.11.0, flate2 1.0.23)
2022-05-01 19:20:46 +02:00
Alexander Zaitsev
93ecab8cd6
Merge pull request #309 from striezel/fix-typos
...
Fix a few typos
2022-05-01 15:14:10 +03:00
Alexander Zaitsev
38d920dab9
Merge pull request #310 from striezel/update-msrv-to-1.57
...
bump MSRV to 1.57
2022-05-01 15:13:16 +03:00
Dirk Stolle
e78a51bdd5
bump MSRV to 1.57
2022-05-01 00:48:56 +02:00
Dirk Stolle
e3d8f47708
Fix a few typos
2022-05-01 00:39:24 +02:00
Alexander Zaitsev
87d7b31f5e
Merge pull request #307 from nickbabcock/fuzz
...
Add read fuzzing module
2022-04-26 11:53:10 +03:00
Alexander Zaitsev
5b0d86d65e
Merge pull request #308 from nickbabcock/fixes-
...
Fix capacity overflow on invalid zips reads
2022-04-26 11:52:29 +03:00
Nick Babcock
03613cb56e
Fix capacity overflow on invalid zips reads
...
Preemptively allocating structures with the number of reported files can
lead to trouble as an invalid zip can still have a valid central
directory end that is fed into a `with_capacity` causing it to overflow.
This commit introduces a heuristic that will use the reported number of
files as long as the number is less than the cde offset.
Benchmarks were unaffected by this change.
2022-04-25 21:01:56 -05:00
Nick Babcock
b7966a8538
Add read fuzzing module
...
As someone who has personal projects that take untrusted zips as input,
it is important to me to be able to fuzz the zip project to simulate
possible inputs and to ensure the projects are not vulnerable.
This commit adds a cargo fuzz module for reading and extracting input.
The `fuzz` directory was scaffolded with a `cargo fuzz init`
I added a CI step to guard against the fuzz module decaying over time.
2022-04-25 20:08:53 -05:00
Alexander Zaitsev
7f424a7ffe
Merge pull request #304 from indygreg/symlink-writing
...
Implement support for writing symlinks
2022-04-12 23:42:43 +03:00