docs: Update list of supported features (#230)

This commit is contained in:
Shun Sakai 2024-08-06 02:15:45 +09:00 committed by GitHub
parent 3a427c4f78
commit 3f6768ec5a
Signed by: DevComp
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 0 deletions

View file

@ -21,6 +21,7 @@ Supported compression formats:
* bzip2 * bzip2
* zstd * zstd
* lzma (decompression only) * lzma (decompression only)
* xz (decompression only)
Currently unsupported zip extensions: Currently unsupported zip extensions:

View file

@ -17,9 +17,11 @@
//! //!
//! | | Reading | Writing | //! | | Reading | Writing |
//! | ------- | ------ | ------- | //! | ------- | ------ | ------- |
//! | Stored | ✅ | ✅ |
//! | Deflate | ✅ [->](`crate::ZipArchive::by_name`) | ✅ [->](`crate::write::FileOptions::compression_method`) | //! | Deflate | ✅ [->](`crate::ZipArchive::by_name`) | ✅ [->](`crate::write::FileOptions::compression_method`) |
//! | Deflate64 | ✅ | | //! | Deflate64 | ✅ | |
//! | Bzip2 | ✅ | ✅ | //! | Bzip2 | ✅ | ✅ |
//! | ZStandard | ✅ | ✅ |
//! | LZMA | ✅ | | //! | LZMA | ✅ | |
//! | XZ | ✅ | | //! | XZ | ✅ | |
//! | AES encryption | ✅ | ✅ | //! | AES encryption | ✅ | ✅ |