diff --git a/README.md b/README.md index dcb337ba..24ab1349 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ Main library [![Crates.io](https://img.shields.io/crates/v/miniz_oxide.svg)](htt C API [![Crates.io](https://img.shields.io/crates/v/miniz_oxide_c_api.svg)](https://crates.io/crates/miniz_oxide_c_api)[![Docs](https://docs.rs/miniz_oxide_c_api/badge.svg)](https://docs.rs/miniz_oxide_c_api) # miniz_oxide -Pure rust Rust replacement for the [miniz](https://github.com/richgel999/miniz) deflate/zlib encoder/decoder using no unsafe code. Builds in [no_std](https://docs.rust-embedded.org/book/intro/no-std.html) mode, though requires the use of `alloc` and `collections` crates. +Pure rust replacement for the [miniz](https://github.com/richgel999/miniz) deflate/zlib encoder/decoder using no unsafe code. Builds in [no_std](https://docs.rust-embedded.org/book/intro/no-std.html) mode, though requires the use of `alloc` and `collections` crates. This project is organized into a C API shell and a rust crate. The Rust crate is found in the [miniz_oxide subdirectory](https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide). diff --git a/miniz_oxide/Readme.md b/miniz_oxide/Readme.md index 51579f07..62687c94 100644 --- a/miniz_oxide/Readme.md +++ b/miniz_oxide/Readme.md @@ -11,7 +11,7 @@ Using the library with `default-features = false` removes the dependency on `all and `collection` crates, making it suitable for systems without an allocator. Running without allocation reduces crate functionality: -- The `deflate` module is removed complete +- The `deflate` module is removed completely - Some `inflate` functions which return a `Vec` are removed miniz_oxide 0.5.x and 0.6.x Requires at least rust 1.40.0 0.3.x requires at least rust 0.36.0.