safe_unzip 0.1.3

Secure zip extraction. Prevents Zip Slip and Zip Bombs.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Archive format adapters.
//!
//! Adapters normalize different archive formats into a common interface
//! for the extraction engine.

mod tar_adapter;
mod zip_adapter;

pub use tar_adapter::{copy_limited, TarAdapter};
pub use zip_adapter::ZipAdapter;