Bump version and add Cargo.toml to README
This commit is contained in:
parent
50bf7204de
commit
55396243d7
2 changed files with 18 additions and 1 deletions
|
@ -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"
|
||||||
|
|
17
README.md
17
README.md
|
@ -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 }
|
||||||
|
```
|
||||||
|
|
Loading…
Add table
Reference in a new issue