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 } +```