Commit graph

544 commits

Author SHA1 Message Date
Alexander Zaitsev
f956a2eb85 doc: veeeery small fix to CoC
- remove extra new line at the beggining of the file
2022-01-23 17:35:39 +03:00
Alexander Zaitsev
061cdf149f fix: fix Clippy warnings
- fix a bunch of Clippy warnings
- fix some usages of assert! (change to assert_ne)

Tested:
- Local unit-tests run
2022-01-23 17:35:27 +03:00
Alexander Zaitsev
82cb917883
Merge pull request #251 from linkmauve/use-getrandom
Use getrandom instead of rand for benches
2022-01-23 13:34:09 +03:00
Alexander Zaitsev
4e71934b88
Merge pull request #259 from zip-rs/fix/issue_234
fix: add header offset overflow check
2022-01-23 13:32:58 +03:00
Alexander Zaitsev
f69ac34045
Merge branch 'master' into use-getrandom 2022-01-23 02:46:40 +03:00
Alexander Zaitsev
b053eb0f2c feat: add tests
- add tests for the large header

Tested:
- Local run
2022-01-23 02:43:04 +03:00
Alexander Zaitsev
6367be606e
Merge pull request #260 from zip-rs/fix/issue_219
fix: make zip-rs build on nightly compiler
2022-01-22 18:15:16 +03:00
Alexander Zaitsev
009d0cc0b4 fix: make zip-rs build on nightly compiler
- update dependencies for the compatibility with the nightly compiler

Tested:
- No
2022-01-22 17:59:25 +03:00
Alexander Zaitsev
8a666b102b fix: add header offset overflow check
- during the header offset calculation, perform overflow check

Tested:
- Local tests
2022-01-22 17:56:13 +03:00
Alexander Zaitsev
06b41010ea
Merge pull request #258 from zip-rs/feature/bump_msrv
feat: bump MSRV
2022-01-22 16:50:44 +03:00
Alexander Zaitsev
4a50d24b4d Merge remote-tracking branch 'origin/master' into feature/bump_msrv 2022-01-22 16:33:05 +03:00
Alexander Zaitsev
17b96ec732
Merge pull request #254 from notmandatory/update_time
Upgrade time dependency to "0.3"
2022-01-22 16:30:57 +03:00
Alexander Zaitsev
2f1630e2b2 feat: bump MSRV
- update MSRV to 1.54 according to the policy. Seems like it needed for
  building dependencies properly
- update CI

Tested:
- No
2022-01-22 15:25:35 +03:00
Alexander Zaitsev
1b6293eee2
Merge pull request #244 from striezel/rand-0.8
chore: bump rand to 0.8
2022-01-22 14:06:28 +03:00
Steve Myers
0ee34bd105
Bump MSRV to 1.52.0 and fix cargo fmt and doc 2021-10-25 10:31:46 -07:00
Steve Myers
2f71810c07
Upgrade time dependency to "0.3"
Versions of time crate prior to 0.2.23 fail audit due to RUSTSEC-2020-0071.

Crate: time
Version: 0.1.43
Title: Potential segfault in the time crate
Date: 2020-11-18
ID: RUSTSEC-2020-0071
URL: https://rustsec.org/advisories/RUSTSEC-2020-0071
Solution: Upgrade to >=0.2.23
2021-10-21 21:31:37 -07:00
Emmanuel Gil Peyrot
b031ab75bd Use getrandom instead of rand for benches
The current code didn’t build, and this one includes fewer dependencies
than the full rand set of crates.
2021-09-06 23:42:14 +02:00
Dirk Stolle
66d0283254 chore: bump rand to 0.8
The Minimum Supported Rust Version of rand 0.8 is 1.36, which is
exactly the MSRV of zip. Therefore, this should be safe to bump.
2021-07-06 00:28:55 +02:00
Marli Frost
7edf2489d5
release 0.5.13 2021-06-04 19:41:03 +01:00
Marli Frost
61de5d51ac
feat: constant for handling missing password 2021-06-04 18:42:20 +01:00
Marli Frost
3fd44ffd5d
Merge pull request #200 from qu1x/support-extra-field 2021-05-11 11:18:17 +01:00
Plecra
9e1b1c73e1
Merge pull request #235 from BenjaminRi/infozip-decrypt
Add Info-ZIP password validation
2021-05-11 10:55:36 +01:00
Benjamin Richner
aee5ff09bc Fix unit test in types.rs 2021-05-02 04:10:32 +02:00
Benjamin Richner
80f4c43369 Add Info-ZIP password validation 2021-05-02 04:02:50 +02:00
Marli Frost
465e7cebd6
fix: update CI to MSRV 1.36.0
*I could've sworn I did this already*
2021-04-19 12:32:20 +01:00
Marli Frost
8ecbdb1870
chore: update to bzip 0.4 2021-04-19 12:29:19 +01:00
Plecra
ce272616ac
Merge pull request #215 from Contextualist/append
Support append to an existing archive
2021-04-19 12:06:26 +01:00
Marli Frost
44352aa34b
fix: allow non-utf8 comments in ZipWriter 2021-04-19 12:02:32 +01:00
Plecra
92799661a7
Merge pull request #231 from a1phyr/remove_archive_bounds
Remove `io::Read + io::Seek` bound to `ZipArchive`
2021-04-19 11:50:41 +01:00
Marli Frost
88e6f87884
chore: release 0.5.12 2021-04-16 16:59:20 +01:00
Plecra
2d99f88870
Merge pull request #222 from mbrubeck/flate2
Allow flate2 >1.0.14
2021-04-16 16:58:37 +01:00
Benoît du Garreau
7a05b1a783 Remove io::Read + io::Seek bound to ZipArchive 2021-04-10 14:13:57 +02:00
Marli Frost
08adaa5fbf
publish 0.5.11 2021-03-01 12:06:16 +00:00
zhanghar
32b2f5b483 refactor: use iterator for file list init 2021-02-25 23:54:20 -05:00
zhanghar
4ce5791164 chore: use pub(crate) for header parsing
used internally by the appendable ZipWriter
2021-02-25 23:50:31 -05:00
Plecra
5290d687b2
Merge pull request #224 from striezel/fix-repository-url
fix repository URL in Cargo.toml
2021-02-24 21:29:44 +00:00
Dirk Stolle
2b126be60b fix repository URL in Cargo.toml 2021-02-14 19:31:10 +01:00
Marli Frost
f02ad80c70
docs: update links to documentation 2021-02-14 12:37:29 +00:00
Marli Frost
5420f8aa3d
docs: update Cargo.toml for new project 2021-02-14 12:32:05 +00:00
Matt Brubeck
c0ef84dd4e Allow flate2 >1.0.14
flate2 was pinned to versions <= 1.0.14 in #175, because flate2 updated
to a new version of miniz_oxide which increased its MSRV (#170,
Frommi/miniz_oxide#85).

This was fixed in Frommi/miniz_oxide#95, so all published versions of
flate2 can once agoin be built with Rust 1.34.0.
2021-02-11 11:18:29 -08:00
Rouven Spreckels
129d7301ef Note that large_file() requires ZIP64 support. 2021-02-07 12:46:52 +01:00
Rouven Spreckels
e42c021448 Merge branch 'master' into support-extra-field 2021-02-04 11:40:38 +01:00
zhanghar
10da026ff6 feat: support append to an existing archive 2020-12-23 14:37:09 -05:00
Marli Frost
229fe94bdf chore: publish 0.5.9 2020-12-06 23:37:48 +00:00
Marli Frost
26710ee8a5 feat: read raw content of files 2020-12-06 23:36:41 +00:00
Rouven Spreckels
425c54cd5f Fix updating local ZIP64 extra field. 2020-11-18 16:27:28 +01:00
Rouven Spreckels
d53c8bdf07 Merge branch 'master' into support-extra-field 2020-11-16 11:57:08 +01:00
Plecra
f5061c25e9
Merge pull request #178 from davide-romanini/forgive-after-comment-junk
Allow for garbage after comment data
2020-11-15 21:32:38 +00:00
Plecra
b3c32794cd
Merge pull request #207 from ZaMaZaN4iK/master
Fix typo in README
2020-11-15 18:13:43 +00:00
Plecra
4d8a068495
Merge pull request #98 from robmv/feature-copy
Add new APIs that allow copying zip file entries between zip files
2020-11-15 16:20:53 +00:00