Chris Hennick
28c2eb59e7
chore: Fix error by cfg-guarding the declaration of filename
and not just its use
2024-05-02 18:32:20 -07:00
Chris Hennick
63793a32ff
chore: Fix errors by moving use
statements inside the cfg-guarded function that uses them
2024-05-02 18:04:05 -07:00
Chris Hennick
8fa3ebb343
style: Fix cargo fmt warning
...
Signed-off-by: Chris Hennick <4961925+Pr0methean@users.noreply.github.com>
2024-05-02 17:41:49 -07:00
Chris Hennick
b7cce8a296
doc(examples): fix type mismatch
...
Signed-off-by: Chris Hennick <4961925+Pr0methean@users.noreply.github.com>
2024-05-02 17:09:26 -07:00
Chris Hennick
468f314b29
doc(examples): fix typo
...
Signed-off-by: Chris Hennick <4961925+Pr0methean@users.noreply.github.com>
2024-05-02 15:38:55 -07:00
Chris Hennick
90b646b202
doc(examples): Fix missing piece from previous commit
...
Signed-off-by: Chris Hennick <4961925+Pr0methean@users.noreply.github.com>
2024-05-02 14:55:40 -07:00
Chris Hennick
7355c51f93
doc(examples): Fix errors
...
main() will still exist without a deflate cfg, it just won't do anything.
Signed-off-by: Chris Hennick <4961925+Pr0methean@users.noreply.github.com>
2024-05-02 13:47:36 -07:00
Chris Hennick
855d57610c
style: Fix unused warnings by making the entire file cfg-dependent
2024-05-02 13:35:08 -07:00
Chris Hennick
2c61eb0cb7
doc(examples): fix a bug
...
`doit()` function can't exist without `cfg(feature = "_deflate-any")`, and making it unreachable isn't enough
Signed-off-by: Chris Hennick <4961925+Pr0methean@users.noreply.github.com>
2024-05-02 13:14:49 -07:00
Chris Hennick
64c9dd0b9d
Merge branch 'master' into oldpr384
2024-05-02 11:52:01 -07:00
Chris Hennick
e670e98073
fix: only compile new example if a Deflate encoder is enabled
2024-05-01 15:19:52 -07:00
Chris Hennick
04390ca276
style: cargo fmt --all
2024-05-01 15:07:15 -07:00
Chris Hennick
fbf000cf56
docs(examples): Update FileOptions import
2024-05-01 15:06:55 -07:00
Chris Hennick
831ffcefe9
Merge remote-tracking branch 'byron/large-file-example' into oldpr384
2024-05-01 15:03:35 -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
8eae69349e
style: fix Cargo warning re cfg(any())
...
Signed-off-by: Chris Hennick <4961925+Pr0methean@users.noreply.github.com>
2024-04-24 03:51:58 -07:00
Chris Hennick
1663321323
refactor!: remove deflate-miniz
feature since it's now equivalent to deflate
( #35 )
2024-04-24 00:21:04 -07:00
Chris Hennick
e4d0a0228a
cargo fmt --all
2024-04-19 18:52:45 -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
Wyatt Herkamp
61afe4dad9
Added ExtendedFileOptions
2024-04-15 16:32:07 -04:00
Chris Hennick
da21bbe45f
Remove redundant imports
2024-02-28 16:03:44 -08:00
Sebastian Thiel
4f4f76c9a2
feat: add write-large-file
example to show how to write huge files.
...
This requires DEFLATE64 support, which is seemingly present in the
default rust backend.
2023-07-23 10:28:11 +02:00
Chris Hennick
2407ef95c6
Fixes and refactors for no-features build
2023-05-30 18:17:59 -07:00
Chris Hennick
9ec0ddc5ca
Add zlib-ng
2023-05-30 09:18:26 -07:00
Chris Hennick
255cfaf261
Add flush_on_finish_file parameter
2023-05-26 17:22:53 -07:00
Chris Hennick
4faebb4468
Overhaul extra-data interface
2023-05-13 13:59:14 -07:00
Chris Hennick
d3400509bc
Fix formatting issues from cargo fmt
2023-04-23 14:58:10 -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
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