Commit graph

452 commits

Author SHA1 Message Date
Mathijs van de Nes
f2e5cad539 Typo 2018-01-06 14:17:02 +01:00
Mathijs van de Nes
5ad8752ce3 Use mingw-w64 when needed in appveyor 2018-01-06 13:50:01 +01:00
Mathijs van de Nes
f01ea3dbd8 Next Appveyor attempt 2018-01-06 12:33:16 +01:00
Mathijs van de Nes
24478902a0 Attempt to fix GCC for appveyor 2018-01-06 12:18:42 +01:00
Mathijs van de Nes
6808962143 Bump version 2018-01-06 12:06:58 +01:00
Mathijs van de Nes
bbb279286a Remove unused import 2018-01-06 12:06:23 +01:00
Mathijs van de Nes
c09daf3bba Modernize appveyor script
Old version did not use newer stable rust than 1.16
2018-01-06 12:01:03 +01:00
Mathijs van de Nes
50b57f4e37 Always use rust backend of flate2
Also fixes compiling with --no-default-features
2018-01-06 11:44:28 +01:00
Mathijs van de Nes
30236e9a5c Merge branch 'rardiol-flate2' 2018-01-06 11:43:30 +01:00
rardiol
22194687c6 use flate2 1.0 2018-01-01 17:12:41 -03:00
Bob Sun
c7e4ac0c2f Provide the rust_backend feature 2018-01-01 17:10:59 -03:00
Mathijs van de Nes
79adef3b6e
Merge pull request #52 from anvie/master
Handle invalid zip header
2017-12-06 20:57:56 +01:00
Robin Syihab
c99d7c2758
Handle invalid zip header 2017-12-04 01:19:44 +07:00
Mathijs van de Nes
cb5a919a31 Merge branch 'biluohc-master' 2017-11-25 19:13:54 +01:00
biluohc
09f728e71a fix output format style for examples/extract.rs 2017-10-28 23:48:02 +08:00
biluohc
36146f0f2a fix output format style for examples/extract.rs 2017-10-28 23:45:07 +08:00
biluohc
de8e31660b Modify examples/extract.rs, reduce code. 2017-10-28 10:51:46 +08:00
Mathijs van de Nes
5719d687db Bump version 2017-08-17 18:27:53 +02:00
Mathijs van de Nes
5b259dc12a Merge branch 'pkgw-pr-basic-zip64' 2017-08-17 18:19:40 +02:00
Peter Williams
f85b5cb7b8 Add a test for ZIP64 with leading junk.
I constructed this file using a hack from the Zip manpage: if the input to a
Zip compression command is streamed on standard input, the output is given in
ZIP64 format since the tool doesn't know how big the input will be. I modified
the resulting file by adding some leading junk text and editing the non-ZIP64
end-of-central-directory structure to have 0xFFFF for its "number of files"
parameters, to help the test demonstrate that the ZIP64 data are being
properly read. (0xFFFF is the value used in the non-ZIP64 structure if the
archive actually has more than 65535 files.)
2017-08-12 14:42:32 -04:00
Peter Williams
4a297c32a8 Implement support for reading ZIP64 central-directory-end records
This provides only very basic ZIP64 support, but it allows us to properly read
archives with more than 65535 files, so long as none of the individual files
need ZIP64 support to be read.
2017-08-12 14:42:32 -04:00
Peter Williams
89f33c9348 Use u64's for internal file offsets.
These are better aligned with Rust's APIs, and lay the groundwork for more
convenient support of Zip64 files.
2017-08-12 14:42:32 -04:00
Mathijs van de Nes
5a123f2767 Bump version 2017-07-05 21:37:24 +02:00
Mathijs van de Nes
2dae0d4a5c Add regression test for #40 2017-07-05 21:36:47 +02:00
Mathijs van de Nes
1b4d31839b Merge branch 'killercup-fuzz' 2017-07-05 21:31:23 +02:00
Mathijs van de Nes
3c90de3d1a Merge branch 'fuzz' of https://github.com/killercup/zip-rs into killercup-fuzz 2017-07-05 21:30:02 +02:00
Mathijs van de Nes
53bf2c363f Merge branch 'king6cong-master' 2017-07-05 21:20:44 +02:00
king6cong
e524388fe7 add zip directory example 2017-07-02 19:51:38 +08:00
Pascal Hertleif
57a6514a40 Prevent subtract with overflow
This changes assumes this only happens when the archive is invalid.

Fixes #40
2017-06-27 11:23:17 +02:00
Mathijs van de Nes
5c12e511d1 Bump version 2017-05-28 12:29:19 +02:00
Mathijs van de Nes
7aaedf6457 Add Copy/Clone for FileOptions
Resolves #38
2017-05-28 12:26:18 +02:00
Mathijs van de Nes
afb306d11d Merge branch 'feature/data-start' of https://github.com/bbqsrc/zip-rs 2017-04-28 12:43:03 +02:00
Mathijs van de Nes
240e1d469d Corrected some static -> const 2017-04-28 10:31:12 +02:00
Mathijs van de Nes
b0a1bd8474 Merge branch 'sagebind-handle-prepended-data' 2017-04-28 10:29:08 +02:00
Chris West (Faux)
0b5746150c read_single 2017-04-24 15:12:22 +01:00
Brendan Molloy
60596d15d9 Add data_start property to ZipFile 2017-04-17 15:53:10 +10:00
Stephen M. Coakley
fc746a09db
Handle data prepended to the zip 2017-04-08 03:04:18 -05:00
Mathijs van de Nes
95f311fd3e Bump version 2017-03-30 19:21:09 +02:00
Mathijs van de Nes
633360a5a7 Ignore Io errors in extra field
IoErrors mean that the extra field was not long enough or contained an invalid lenght value.
These are ignored for now.

Resolves #32
2017-03-30 19:18:08 +02:00
Mathijs van de Nes
236050947a Fix a regression
Test would not compile anymore... weird
2017-03-30 19:03:25 +02:00
Mathijs van de Nes
1461377031 Merge pull request #30 from vandenoever/tests
Add two simple tests.
2017-03-18 18:04:50 +01:00
Jos van den Oever
93f676fa57 Add two simple tests. 2017-03-14 20:16:51 +01:00
Mathijs van de Nes
da4d8080c5 Bump version 2017-03-06 21:26:11 +01:00
Mathijs van de Nes
75558ea665 Merge branch 'stanmihai4-master' 2017-03-06 21:25:43 +01:00
Mihai STAN
7d85d8fb66 Fix writing to buffers.
Using SeekFrom::End(0) in finish_file for a buffer was movind the position
the the end of the buffer, not the last written byte.
2017-03-06 06:22:42 +02:00
Mathijs van de Nes
1831edbbdd Expose the raw file name of a file
We still do most operations with normal Strings, but a user can now also get the raw bytes.

Resolves #26
2017-02-12 17:18:40 +01:00
Mathijs van de Nes
88445219ec Only allow path::Component::Normal when extracting
Previously, Component::Root and Component::Prefix where still allowed.
This meant some files could be extracted to a location outside the current directory.
Only safe components are Normal and Curdir, but since Curdir does not do anything we filter it aswell.

Resolves #27
2017-02-12 17:05:21 +01:00
Mathijs van de Nes
089f7a89e7 Update the README 2016-10-30 09:24:15 +01:00
Mathijs van de Nes
d2d19f6539 Update the write API
This change adds a FileOptions struct. This struct can be filled using a builder pattern
to set the options for a file or folder.

With this change, we also introduce the option to set the (unix) permissions of a file or folder.
2016-10-30 09:09:50 +01:00
Mathijs van de Nes
82315c9511 Add comments to write.rs
Clarify which field means what when writing structures
2016-10-29 12:30:59 +02:00