Skip to content

Commit

Permalink
Fix crates.io badges and update some links
Browse files Browse the repository at this point in the history
  • Loading branch information
atouchet authored and danielrh committed Feb 17, 2022
1 parent 408f53d commit 1131949
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
@@ -1,6 +1,6 @@
# rust-brotli

[![crates.io](http://meritbadge.herokuapp.com/brotli)](https://crates.io/crates/brotli)
[![crates.io](https://img.shields.io/crates/v/brotli.svg)](https://crates.io/crates/brotli)
[![Build Status](https://travis-ci.org/dropbox/rust-brotli.svg?branch=master)](https://travis-ci.org/dropbox/rust-brotli)


Expand Down Expand Up @@ -156,7 +156,7 @@ This example illustrates a mechanism to avoid subsequent syscalls after the init

## Using the C interface

rust-brotli is a drop-in replacement for the official http://github.com/google/brotli/ C
rust-brotli is a drop-in replacement for the official https://github.com/google/brotli C
implementation. That means you can use it from any place that supports that library.
To build rust-brotli in this manner enter the c subdirectory and run make there

Expand Down
4 changes: 2 additions & 2 deletions c/README.md
@@ -1,6 +1,6 @@
# rust-brotli

[![crates.io](http://meritbadge.herokuapp.com/brotli)](https://crates.io/crates/brotli)
[![crates.io](https://img.shields.io/crates/v/brotli.svg)](https://crates.io/crates/brotli)
[![Build Status](https://travis-ci.org/dropbox/rust-brotli.svg?branch=master)](https://travis-ci.org/dropbox/rust-brotli)

* A fully compatible FFI for drop-in compatibiltiy with the https://github.com/google/brotli binaries
Expand All @@ -23,7 +23,7 @@ optimizations are employed.

## Using the C interface

rust-brotli is a drop-in replacement for the official http://github.com/google/brotli/ C
rust-brotli is a drop-in replacement for the official https://github.com/google/brotli C
implementation. That means you can use it from any place that supports that library.
To build rust-brotli in this manner enter the c subdirectory and run make there

Expand Down
2 changes: 1 addition & 1 deletion src/enc/entropy_encode.rs
Expand Up @@ -165,7 +165,7 @@ pub fn SortHuffmanTreeItems<Comparator: HuffmanComparator>(items: &mut [HuffmanT
especially when population counts are longer than 2**tree_limit, but
we are not planning to use this with extremely long blocks.
See http://en.wikipedia.org/wiki/Huffman_coding */
See https://en.wikipedia.org/wiki/Huffman_coding */
pub fn BrotliCreateHuffmanTree(data: &[u32],
length: usize,
tree_limit: i32,
Expand Down

0 comments on commit 1131949

Please sign in to comment.