diff --git a/Cargo.toml b/Cargo.toml index eceb457..f92aa65 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ exclude = ["logo.png", "examples/*", ".gitignore", ".travis.yml"] publish = true -repository = "https://github.com/servo/bincode" +repository = "https://github.com/bincode-org/bincode" documentation = "https://docs.rs/bincode" readme = "./readme.md" categories = ["encoding", "network-programming"] diff --git a/README.md b/README.md index 1f822a6..f15848d 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ -![CI](https://github.com/servo/bincode/workflows/CI/badge.svg) +![CI](https://github.com/bincode-org/bincode/workflows/CI/badge.svg) [![](https://meritbadge.herokuapp.com/bincode)](https://crates.io/crates/bincode) [![](https://img.shields.io/badge/license-MIT-blue.svg)](https://opensource.org/licenses/MIT) [![](https://img.shields.io/badge/bincode-rustc_1.41.1+-lightgray.svg)](https://blog.rust-lang.org/2020/06/18/Rust.1.44.1.html) @@ -15,15 +15,15 @@ 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, -and the [flate2-rs](https://github.com/alexcrichton/flate2-rs) compression +and the [flate2-rs](https://github.com/rust-lang/flate2-rs) compression library. ## [API Documentation](https://docs.rs/bincode/) -## Bincode in the wild +## 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/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. ## Example @@ -109,4 +109,4 @@ maximum size limit. Malicious inputs will fail upon deserialization. ### What is Bincode's MSRV (minimum supported Rust version)? -Bincode 2.0 maintains support for rust 1.41.1. Any changes to this are considered a breaking change for semver purposes. \ No newline at end of file +Bincode 2.0 maintains support for Rust 1.41.1. Any changes to this are considered a breaking change for semver purposes.