Wyatt Herkamp
2b9efe97ba
Fixed new Clippy Warnings
2022-10-13 07:44:26 -04:00
Lireer
c8aece8f7b
fix nightly clippy warnings in examples
2022-01-30 15:32:40 +01:00
Alexander Zaitsev
63e714f622
Merge branch 'master' into feature/add_zstd_compression
2022-01-23 19:17:26 +03:00
Alexander Zaitsev
113afbeafe
fix: Clippy fix
...
- small Clippy fix from CI
Tested:
- No
2022-01-23 19:07:24 +03:00
Alexander Zaitsev
e636399935
fix: fix all Clippy warnings
...
- some warnings are muted since fixing them right now can be a breaking
API change
- fix Clippy warns in the src, examples and tests
Tested:
- Local test run
2022-01-23 18:54:43 +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
0b82d905b3
feat: add Zstandard compression
...
- add dependency on zstd crate
- add zstd feature to Cargo.toml
- update README
- update example with Zstd
- add Zstd support to the library
Notes:
- This work is mainly based on this original PR: https://github.com/zip-rs/zip/pull/240
Tested:
- During the development of the original PR
2022-01-23 14:49:48 +03:00
Marli Frost
105368aebf
docs: improve explanation of new APIs
2020-11-10 16:37:14 +00:00
Marli Frost
33a787ec54
fix: overlapping borrows on unix platforms
...
When cfg(unix), the `outpatj` meeded to last until the
`set_permissions` call, but it can't exist during the `io::copy`
2020-09-12 11:10:19 +01:00
Marli Frost
a35c8ffa91
chore: update tests to use preferred method
2020-09-12 10:51:43 +01:00
Marli Frost
4eba55cb7a
refactor: use deprecated API in tests
2020-08-19 13:59:48 +01:00
Marli Frost
8f36598cac
refactor: use deprecated API in example
2020-08-19 13:36:35 +01:00
Piotr Maks
d1bdd552e9
Enable deflated compression method for any flate2 backend
...
Allow using other than default flate2 backend for deflated compression
method. The motivation for this change was to allow using different
backends in dependent crates.
2020-06-17 07:23:32 +02:00
Ryan Levick
ebb07348ee
Run cargo fmt
2020-06-15 10:44:39 +02:00
Lachezar Lechev
29517e9a6b
run cargo fix --edition-idioms
and manually fix other things
2019-11-11 09:20:31 +02:00
Lachezar Lechev
99dba6b397
run cargo fix --edition
2019-11-11 08:58:59 +02:00
Michael Lamparski
907e13b5b6
impl Default for write::FileOptions
2019-07-22 13:24:34 -04:00
Mathijs van de Nes
e6a1c68a64
Update example to use new functionality
2019-04-06 17:19:18 +02:00
jonpas
c14a8c7f5d
Use add_directory in write_dir example
...
Fix compatibility with some unzip tools.
2019-03-30 21:06:43 +01:00
Mathijs van de Nes
4ae1db992c
Merge branch 'add-libflate' of https://github.com/xmclark/zip-rs
2018-11-13 10:33:16 +01:00
Mackenzie Clark
9e849ef089
revert the code order changes
2018-11-09 16:20:23 -08:00
Sam Rijs
493424e93d
Use BufReader in file_info example
2018-11-06 23:14:23 +11:00
Mackenzie Clark
c05b6c2317
add libflate feature
2018-11-04 10:12:21 -08:00
Mathijs van de Nes
87dbf02e77
Add new example file_info
...
Like stdin_info, only displays the data of a file, but does not extract
the contents.
2018-10-17 11:38:44 +02:00
Benedikt Rascher-Friesenhausen
804cfea51c
Replace try!
macros with ?
operator calls
...
The `?` operator exists since Rust version 1.13.0 and has since become the
standard and recommended variant over the `try!` macro (see
https://doc.rust-lang.org/std/macro.try.html where it is explicitly mentioned to
use the `?` operator instead of the `try!` macro).
I think it is especially useful to replace the `try!` usages throughout the
examples (since new users might not be familiar with the `try!` macro at all).
2018-10-02 23:12:35 +02:00
Mathijs van de Nes
9b0a6930d4
Update example and bump version to 0.4.1
2018-06-20 22:19:03 +02:00
Mathijs van de Nes
38d1699853
Improve reading from non-seekable streams
...
You can now repeatedly call a function to iterate over all files in a
zip. This may give some suboptimal results, but is useful when dealing
with an incoming data stream.
2018-06-16 14:14:34 +02:00
Mathijs van de Nes
5e8c95e6ed
Make santized_name part of the library
...
It is a common pitfall to use the name as-is during extraction. Adding
this function may prevent some of the issues.
Resolves #65
2018-04-20 13:35:20 +02:00
Giles Cope
da68a33c80
Updated readme to indicate existence of examples dir. Generalised zip dir example so people could use it also to write to an memory buffer rather than a file. Ideally I'd have the zip dir functionaility in the crate but I can see the need to minimise dependencies.
2018-01-27 06:21:57 +00:00
jhwgh1968
19274b497a
Made deflate compression into separate feature
2018-01-07 00:47:11 -06: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
king6cong
e524388fe7
add zip directory example
2017-07-02 19:51:38 +08: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
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
Alexander Koval
a16962cd2c
Support for external file attributes
2016-04-23 10:31:54 +03:00
Mathijs van de Nes
a328b8ba2c
Do not use feature exit_status
2015-04-03 14:54:57 +02:00
Mathijs van de Nes
32c54f7d6b
Fix the extract test
2015-03-26 21:58:21 +01:00
Mathijs van de Nes
8010b29b5e
Fix extract example
2015-03-17 16:54:51 +01:00
Mathijs van de Nes
d778c0bb30
Update feature list
2015-03-15 14:57:25 +01:00
Mathijs van de Nes
785dccbf8e
Update features and deprecated items
2015-03-08 11:25:25 +01:00
Mathijs van de Nes
9c9a986eaf
Update examples to new IO
2015-03-02 18:29:23 +01:00
Mathijs van de Nes
522039a70d
Use the correct start index for iteration
2015-03-01 12:01:39 +01:00
Mathijs van de Nes
86ec190ba6
Fix one overlooked example
2015-03-01 11:57:50 +01:00
Mathijs van de Nes
d9b83af57c
Large refactoring, mostly of the reader
...
- Combined reader and reader_spec into read
- Alter the iteration protocol for a zip archive
- Modify some names
2015-03-01 11:32:40 +01:00
Mathijs van de Nes
6d2a63e406
Fix tests and examples
2015-02-24 16:16:08 +01:00
Mathijs van de Nes
2e8baed799
Initial io conversion
...
- Convert most of the writer code to Write instead of Writer
- Add ioconverter module to convert between old and new IO
- Fix reader for new flate2
2015-02-24 13:00:55 +01:00
Mathijs van de Nes
ba0ec950a8
Use old_io and old_path features in the examples
2015-02-20 17:07:56 +01:00