From 55396243d766d80e546cf395262f11d816c4a12a Mon Sep 17 00:00:00 2001 From: Mathijs van de Nes Date: Mon, 5 Oct 2015 22:05:30 +0200 Subject: [PATCH] Bump version and add Cargo.toml to README --- Cargo.toml | 2 +- README.md | 17 +++++++++++++++++ 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index f02af265..d8b2a088 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "zip" -version = "0.1.13" +version = "0.1.14" authors = ["Mathijs van de Nes "] license = "MIT" repository = "https://github.com/mvdnes/zip-rs.git" diff --git a/README.md b/README.md index eba75d24..78de992d 100644 --- a/README.md +++ b/README.md @@ -23,3 +23,20 @@ Currently unsupported zip extensions: * ZIP64 * Encryption * 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 } +```