Bump version and add Cargo.toml to README

This commit is contained in:
Mathijs van de Nes 2015-10-05 22:05:30 +02:00
parent 50bf7204de
commit 55396243d7
2 changed files with 18 additions and 1 deletions

View file

@ -1,7 +1,7 @@
[package] [package]
name = "zip" name = "zip"
version = "0.1.13" version = "0.1.14"
authors = ["Mathijs van de Nes <git@mathijs.vd-nes.nl>"] authors = ["Mathijs van de Nes <git@mathijs.vd-nes.nl>"]
license = "MIT" license = "MIT"
repository = "https://github.com/mvdnes/zip-rs.git" repository = "https://github.com/mvdnes/zip-rs.git"

View file

@ -23,3 +23,20 @@ Currently unsupported zip extensions:
* ZIP64 * ZIP64
* Encryption * Encryption
* Multi-disk * Multi-disk
Usage
-----
With all default features:
```toml
[dependencies]
zip = "0.1"
```
Without the default features:
```toml
[dependencies]
zip = { version = "0.1", default-features = false }
```