Registry / utility / zip-extract

zip-extract

JSON →
library0.4.1rscratesunverified

Deprecated, use the zip crate instead.

# Cargo.toml [dependencies] zip-extract = "0.4.1"
INSTALL
IMPORT
SIG · ZIP-EXTRACT
Z
zip-extract
utilityrustv0.4.1
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

extract
use zip_extract::extract;

Extracts a ZIP archive to a directory.

use zip_extract::extract; use std::fs::File; fn main() { let archive = File::open("archive.zip").unwrap(); let out_dir = std::path::Path::new("./output"); extract(archive, out_dir, true).unwrap(); }
Debug
Known issues
breakingThis crate is deprecated; use the `zip` crate directly.
fix
Replace `zip-extract` with `zip` and use `zip::ZipArchive`.
affects: >=0.4.0
Upgrade
Version history
0.4.1latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
30 hits · last 30 days
node
24
Amazon
1
Resources
zip-extract — cargo add zip-extract · libregistry