We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a427c4 commit 3f6768eCopy full SHA for 3f6768e
README.md
@@ -21,6 +21,7 @@ Supported compression formats:
21
* bzip2
22
* zstd
23
* lzma (decompression only)
24
+* xz (decompression only)
25
26
Currently unsupported zip extensions:
27
src/lib.rs
@@ -17,9 +17,11 @@
17
//!
18
//! | | Reading | Writing |
19
//! | ------- | ------ | ------- |
20
+//! | Stored | ✅ | ✅ |
//! | Deflate | ✅ [->](`crate::ZipArchive::by_name`) | ✅ [->](`crate::write::FileOptions::compression_method`) |
//! | Deflate64 | ✅ | |
//! | Bzip2 | ✅ | ✅ |
+//! | ZStandard | ✅ | ✅ |
//! | LZMA | ✅ | |
//! | XZ | ✅ | |
//! | AES encryption | ✅ | ✅ |
0 commit comments