zip-rs-wasm/README.md
Peter Williams 4a297c32a8 Implement support for reading ZIP64 central-directory-end records
This provides only very basic ZIP64 support, but it allows us to properly read
archives with more than 65535 files, so long as none of the individual files
need ZIP64 support to be read.
2017-08-12 14:42:32 -04:00

42 lines
997 B
Markdown

zip-rs
======
[![Build Status](https://travis-ci.org/mvdnes/zip-rs.svg?branch=master)](https://travis-ci.org/mvdnes/zip-rs)
[![Build status](https://ci.appveyor.com/api/projects/status/gsnpqcodg19iu253/branch/master?svg=true)](https://ci.appveyor.com/project/mvdnes/zip-rs/branch/master)
[![Crates.io version](https://img.shields.io/crates/v/zip.svg)](https://crates.io/crates/zip)
[Documentation](http://mvdnes.github.io/rust-docs/zip-rs/zip/index.html)
Info
----
A zip library for rust which supports reading and writing of simple ZIP files.
Supported compression formats:
* stored (i.e. none)
* deflate
* bzip2 (optional, enabled by default)
Currently unsupported zip extensions:
* Most of ZIP64, although there is some support for archives with more than 65535 files
* Encryption
* Multi-disk
Usage
-----
With all default features:
```toml
[dependencies]
zip = "0.2"
```
Without the default features:
```toml
[dependencies]
zip = { version = "0.2", default-features = false }
```