eazip 0.2.2

An simple yet flexible zip library
Documentation

Eazip

Crates.io Docs.rs

An simple yet flexible zip library.

This crate provides tools to read and write ZIP archives. It aims at being nice to use for developpers, which includes a good and flexible API, readable source code and clean maintenance.

Given how loose the ZIP spec is about what is a valid ZIP file and the history of security issues around them, this crate also aims at being robust and secure against malicious input. It might therefore may reject some "technically valid" ZIP files. If your ZIP file does not validate but you think it should, feel free to file an issue.

Example

use std::io;

// Open a ZIP archive from a file path
let mut archive = eazip::Archive::open("example.zip")?;

// Print some metadata for every entry in the archive
for entry in archive.entries() {
    println!("File \"{}\" of type {:?} and compressed size {}", entry.name(), entry.file_type, entry.compressed_size);
}

// Print the content of the file "hello.txt"
let mut hello = archive.get_by_name("hello.txt").ok_or(io::ErrorKind::NotFound)?;
let content = io::read_to_string(hello.read()?)?;

println!("Content of hello.txt: {content}");

Goals

  • Protect against malicious archives and zip confusion attack.
  • Don't panic under any input.
  • Have readable code and a simple API.
  • Well-tested against common ZIP files tools.

Non-goals

  • Manage to read every half-broken zip archive out there. This library goes out of its way to ensure that zip archives are well-formed.
  • Have a built-in support for every compression algorithm. By default, this library only supports deflate (because it is everywhere) and zstd (because it is good).
  • Non-unicode file names. Those are rare, weird and non-portable. Please fix you files.
  • Manage encrypted files. This crate is not a crypto crate.

Todo list

  • Better validation of file names when writing files.
  • Support of timestamps when writing.
  • Support of all timestamps when reading (extended versions are supported, but not the basic one).
  • More flexible ("raw") writer support.