mirror of https://git.sr.ht/~stygianentity/bincode
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:
parent
e39a047b4b
commit
cd58cf2e7e
|
|
@ -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"]
|
||||
|
|
|
|||
10
README.md
10
README.md
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
<img align="right" src="./logo.png" />
|
||||
|
||||

|
||||

|
||||
[](https://crates.io/crates/bincode)
|
||||
[](https://opensource.org/licenses/MIT)
|
||||
[](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.
|
||||
|
|
|
|||
Loading…
Reference in New Issue