compiling the zip2 crate to wasm with the goal of compiling to luau through wasynth
Find a file
dependabot[bot] 877be55689
Bump dependabot/fetch-metadata from 1.5.0 to 1.5.1
Bumps [dependabot/fetch-metadata](https://github.com/dependabot/fetch-metadata) from 1.5.0 to 1.5.1.
- [Release notes](https://github.com/dependabot/fetch-metadata/releases)
- [Commits](https://github.com/dependabot/fetch-metadata/compare/v1.5.0...v1.5.1)

---
updated-dependencies:
- dependency-name: dependabot/fetch-metadata
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-05-24 11:14:18 +00:00
.github Bump dependabot/fetch-metadata from 1.5.0 to 1.5.1 2023-05-24 11:14:18 +00:00
benches Bug fix 2023-05-13 14:02:34 -07:00
examples Overhaul extra-data interface 2023-05-13 13:59:14 -07:00
fuzz Include comments in fuzz_write 2023-05-21 15:34:22 -07:00
src Bug fix: create a valid archive even when last file was aborted with content 2023-05-21 15:24:00 -07:00
tests Additional sanity checks on ZIP64 footer 2023-05-14 08:28:52 -07:00
.gitignore add libflate feature 2018-11-04 10:12:21 -08:00
.whitesource Add .whitesource configuration file 2023-04-23 21:33:22 +00:00
Cargo.toml Bump version to 0.8.3 2023-05-21 17:58:20 -07:00
CHANGELOG.md Bug fix: create a valid archive even when last file was aborted with content 2023-05-21 15:24:00 -07:00
CODE_OF_CONDUCT.md doc: veeeery small fix to CoC 2022-01-23 17:35:39 +03:00
LICENSE Added Travis support, README and LICENSE 2014-09-11 10:50:41 +02:00
README.md Bump version to 0.8.3 2023-05-21 17:58:20 -07:00

zip_next

Build Status Crates.io version

Documentation

Info

A zip library for rust which supports reading and writing of simple ZIP files. Forked from https://crates.io/crates/zip to add more features and improve test coverage.

Supported compression formats:

  • stored (i.e. none)
  • deflate
  • bzip2
  • zstd

Currently unsupported zip extensions:

  • Encryption
  • Multi-disk

Usage

With all default features:

[dependencies]
zip_next = "0.8.3"

Without the default features:

[dependencies]
zip_next = { version = "0.8.3", default-features = false }

The features available are:

  • aes-crypto: Enables decryption of files which were encrypted with AES. Supports AE-1 and AE-2 methods.
  • deflate: Enables the deflate compression algorithm, which is the default for zip files.
  • bzip2: Enables the BZip2 compression algorithm.
  • time: Enables features using the time crate.
  • zstd: Enables the Zstandard compression algorithm.

All of these are enabled by default.

MSRV

Our current Minimum Supported Rust Version is 1.66.0. When adding features, we will follow these guidelines:

  • We will always support the latest four minor Rust versions. This gives you a 6 month window to upgrade your compiler.
  • Any change to the MSRV will be accompanied with a minor version bump
    • While the crate is pre-1.0, this will be a change to the PATCH version.

Examples

See the examples directory for:

  • How to write a file to a zip.
  • How to write a directory of files to a zip (using walkdir).
  • How to extract a zip file.
  • How to extract a single file from a zip.
  • How to read a zip from the standard input.

Fuzzing

Fuzzing support is through cargo fuzz. To install cargo fuzz:

cargo install cargo-fuzz

To list fuzz targets:

cargo +nightly fuzz list

To start fuzzing zip extraction:

cargo +nightly fuzz run fuzz_read

To start fuzzing zip creation:

cargo +nightly fuzz run fuzz_write