unzipper 0.1.0

A library for Zip file extraction.
Documentation
1
2
3
4
5
6
7
8
//! A library for Zip file extraction.
//!
//! This library provides functionality to unzip files that are compressed in the ZIP (PKZip) format, including reading the directory,
//! extracting files, and handling errors related to zip operations. Internally, it uses the `miniz_oxide` crate for low-level ZIP file handling.
//!
//! The unzipper is open-source and can be freely used and modified under the terms of the MIT license.

pub mod unzipper;