Update URLs and some cleanups (#383)

* Update URLs and some cleanups

* Capitalize Rust

* Remove accidental directory

* Update URLs and some cleanups

* Update URL

* Capitalize Rust
This commit is contained in:
Alex Touchet 2021-04-09 05:46:05 -07:00 committed by GitHub
parent e39a047b4b
commit cd58cf2e7e
2 changed files with 6 additions and 6 deletions

View File

@ -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"]

View File

@ -2,7 +2,7 @@
<img align="right" src="./logo.png" />
![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<u8>`, 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.
Bincode 2.0 maintains support for Rust 1.41.1. Any changes to this are considered a breaking change for semver purposes.