Commit graph

38 commits

Author SHA1 Message Date
Chris Hennick
e3c81023a7
fix: Decode Zip-Info UTF8 name and comment fields (#159) 2024-06-02 11:52:20 -07:00
Chris Hennick
726c7af42b
fix: use is_dir in more places where Windows paths might be handled incorrectly 2024-05-01 15:12:19 -07:00
Chris Hennick
174825229c
Change crate name to "zip" per https://github.com/zip-rs/zip/issues/446#issuecomment-2063837388 2024-04-19 18:50:27 -07:00
Chris Hennick
cde5d5ed11
Implement shallow copy from within the file being written 2023-04-23 14:33:10 -07: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
Wyatt Herkamp
1c5cd4ffda Fixed new Clippy Warnings 2022-10-13 07:51:02 -04:00
Lireer
c8aece8f7b fix nightly clippy warnings in examples 2022-01-30 15:32:40 +01: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
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
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
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
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
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
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
ba0ec950a8 Use old_io and old_path features in the examples 2015-02-20 17:07:56 +01:00
Mathijs van de Nes
897ff2a82a Fix os args 2015-02-13 09:58:42 +01:00
Mathijs van de Nes
e41200c30b Remove deprecated items 2015-02-06 09:05:02 +01:00
Mathijs van de Nes
55ebfaaa7c Convert unstable to the requested features 2015-01-29 17:19:16 +01:00
Mathijs van de Nes
e3b42c0c85 Fix examples and tests 2015-01-29 11:04:38 +01:00
Mathijs van de Nes
c2686b3b2e Move examples to proper directory 2015-01-20 10:09:54 +01:00
Renamed from src/bin/extract.rs (Browse further)