diff --git a/README.md b/README.md index a100081..579332b 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,9 @@ -[![Build Status](https://travis-ci.org/servo/bincode.svg)](https://travis-ci.org/servo/bincode) +[![Build Status](https://travis-ci.com/servo/bincode.svg)](https://travis-ci.com/servo/bincode) [![](https://meritbadge.herokuapp.com/bincode)](https://crates.io/crates/bincode) -[![](https://img.shields.io/badge/license-MIT-blue.svg)](http://opensource.org/licenses/MIT) +[![](https://img.shields.io/badge/license-MIT-blue.svg)](https://opensource.org/licenses/MIT) A compact encoder / decoder pair that uses a binary zero-fluff encoding scheme. The size of the encoded object will be the same or smaller than the size that @@ -13,17 +13,17 @@ the object takes up in memory in a running Rust program. In addition to exposing two simple functions (one that encodes to `Vec`, and one that decodes from `&[u8]`), binary-encode exposes a Reader/Writer API that makes it work -perfectly with other stream-based apis such as rust files, network streams, +perfectly with other stream-based APIs such as Rust files, network streams, and the [flate2-rs](https://github.com/alexcrichton/flate2-rs) compression library. -## [Api Documentation](http://docs.rs/bincode/) +## [API Documentation](https://docs.rs/bincode/) ## Bincode in the wild * [google/tarpc](https://github.com/google/tarpc): Bincode is used to serialize and deserialize networked RPC messages. * [servo/webrender](https://github.com/servo/webrender): Bincode records webrender API calls for record/replay-style graphics debugging. -* [servo/ipc-channel](https://github.com/servo/ipc-channel): Ipc-Channel uses Bincode to send structs between processes using a channel-like API. +* [servo/ipc-channel](https://github.com/servo/ipc-channel): IPC-Channel uses Bincode to send structs between processes using a channel-like API. ## Example