From 2be9ae871fff12f09586eb2462a56550a38800a8 Mon Sep 17 00:00:00 2001 From: Marli Frost Date: Sun, 20 Mar 2022 19:06:15 +0000 Subject: [PATCH] release: 0.6 --- Cargo.toml | 2 +- README.md | 9 ++++++--- src/read.rs | 12 ++++++++++++ 3 files changed, 19 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index e24db0d1..5963d62c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zip" -version = "0.5.13" +version = "0.6.0" authors = ["Mathijs van de Nes ", "Marli Frost ", "Ryan Levick "] license = "MIT" repository = "https://github.com/zip-rs/zip.git" diff --git a/README.md b/README.md index 0fbd7a86..259e24b8 100644 --- a/README.md +++ b/README.md @@ -5,12 +5,15 @@ zip-rs [![Crates.io version](https://img.shields.io/crates/v/zip.svg)](https://crates.io/crates/zip) [![Discord](https://badgen.net/badge/icon/discord?icon=discord&label)](https://discord.gg/rQ7H9cSsF4) -[Documentation](https://docs.rs/zip/0.5.13/zip/) +[Documentation](https://docs.rs/zip/0.6.0/zip/) +> PSA: This version of the ZIP crate will not gain any new features, +> and will only be updated if major security issues are found. Info ---- + A zip library for rust which supports reading and writing of simple ZIP files. Supported compression formats: @@ -32,14 +35,14 @@ With all default features: ```toml [dependencies] -zip = "0.5" +zip = "0.6" ``` Without the default features: ```toml [dependencies] -zip = { version = "0.5", default-features = false } +zip = { version = "0.6", default-features = false } ``` The features available are: diff --git a/src/read.rs b/src/read.rs index ff021af7..01fbfe0e 100644 --- a/src/read.rs +++ b/src/read.rs @@ -500,6 +500,12 @@ impl ZipArchive { } /// Search for a file entry by name, decrypt with given password + /// + /// # Warning + /// + /// The implementation of the cryptographic algorithms has not + /// gone through a correctness review, and you should assume it is insecure: + /// passwords used with this API may be compromised. pub fn by_name_decrypt<'a>( &'a mut self, name: &str, @@ -528,6 +534,12 @@ impl ZipArchive { } /// Get a contained file by index, decrypt with given password + /// + /// # Warning + /// + /// The implementation of the cryptographic algorithms has not + /// gone through a correctness review, and you should assume it is insecure: + /// passwords used with this API may be compromised. pub fn by_index_decrypt<'a>( &'a mut self, file_number: usize,