Skip to content

Commit

Permalink
Update various links
Browse files Browse the repository at this point in the history
  • Loading branch information
atouchet committed Mar 24, 2021
1 parent 630ec29 commit 5d8a672
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/target/

# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
# More information here http://doc.crates.io/guide.html#cargotoml-vs-cargolock
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
Cargo.lock

/data/
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# deflate-rs

[![Build Status](https://travis-ci.org/image-rs/deflate-rs.svg)](https://travis-ci.org/image-rs/deflate-rs)[![Crates.io](https://img.shields.io/crates/v/deflate.svg)](https://crates.io/crates/deflate)[![Docs](https://docs.rs/deflate/badge.svg)](https://docs.rs/deflate)
[![Build Status](https://travis-ci.com/image-rs/deflate-rs.svg)](https://travis-ci.com/github/image-rs/deflate-rs)[![Crates.io](https://img.shields.io/crates/v/deflate.svg)](https://crates.io/crates/deflate)[![Docs](https://docs.rs/deflate/badge.svg)](https://docs.rs/deflate)


An implementation of a [DEFLATE](http://www.gzip.org/zlib/rfc-deflate.html) encoder in pure Rust. Not a direct port, but does take some inspiration from [zlib](http://www.zlib.net/), [miniz](https://github.com/richgel999/miniz) and [zopfli](https://github.com/google/zopfli). The API is based on the one in the [flate2](https://crates.io/crates/flate2) crate that contains bindings, zlib miniz_oxide, and miniz.
An implementation of a [DEFLATE](http://www.gzip.org/zlib/rfc-deflate.html) encoder in pure Rust. Not a direct port, but does take some inspiration from [zlib](https://www.zlib.net/), [miniz](https://github.com/richgel999/miniz) and [zopfli](https://github.com/google/zopfli). The API is based on the one in the [flate2](https://crates.io/crates/flate2) crate that contains bindings, zlib miniz_oxide, and miniz.

Deflate encoding with and without zlib and gzip metadata (zlib dictionaries are not supported) is supported. No unsafe code is used.

Expand Down Expand Up @@ -35,9 +35,9 @@ let compressed_data = encoder.finish().unwrap();
```

# Other deflate/zlib Rust projects from various people
* [flate2](http://alexcrichton.com/flate2-rs/flate2/index.html) FLATE, Gzip, and Zlib bindings for Rust - can use miniz_oxide for a pure Rust implementation.
* [flate2](https://github.com/rust-lang/flate2-rs) FLATE, Gzip, and Zlib bindings for Rust - can use miniz_oxide for a pure Rust implementation.
* [Zopfli in Rust](https://github.com/carols10cents/zopfli) Rust port of zopfli
* [inflate](https://github.com/PistonDevelopers/inflate) DEFLATE decoder implemented in Rust
* [inflate](https://github.com/image-rs/inflate) DEFLATE decoder implemented in Rust
* [miniz-oxide](https://github.com/Frommi/miniz_oxide) Port of miniz to Rust.
* [libflate](https://github.com/sile/libflate) Another DEFLATE/Zlib/Gzip encoder and decoder written in Rust. (Only does some very light compression).

Expand Down
2 changes: 1 addition & 1 deletion src/length_encode.rs
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ mod in_place {

/// Generate huffman code lengths, using the algorithm described by
/// Moffat and Katajainen in In-Place Calculation of Minimum-Redundancy Codes
/// http://people.eng.unimelb.edu.au/ammoffat/abstracts/mk95wads.html
/// https://people.eng.unimelb.edu.au/ammoffat/abstracts/mk95wads.html
/// and it's implementation.
///
/// This is significantly faster, and seems to generally create lengths that result in length
Expand Down

0 comments on commit 5d8a672

Please sign in to comment.