Readme cleanup
This commit is contained in:
parent
43b6c2c516
commit
30ada4acda
10
README.md
10
README.md
|
|
@ -2,9 +2,9 @@
|
||||||
|
|
||||||
<img align="right" src="./logo.png" />
|
<img align="right" src="./logo.png" />
|
||||||
|
|
||||||
[](https://travis-ci.org/servo/bincode)
|
[](https://travis-ci.com/servo/bincode)
|
||||||
[](https://crates.io/crates/bincode)
|
[](https://crates.io/crates/bincode)
|
||||||
[](http://opensource.org/licenses/MIT)
|
[](https://opensource.org/licenses/MIT)
|
||||||
|
|
||||||
A compact encoder / decoder pair that uses a binary zero-fluff encoding scheme.
|
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
|
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
|
In addition to exposing two simple functions
|
||||||
(one that encodes to `Vec<u8>`, and one that decodes from `&[u8]`),
|
(one that encodes to `Vec<u8>`, and one that decodes from `&[u8]`),
|
||||||
binary-encode exposes a Reader/Writer API that makes it work
|
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
|
and the [flate2-rs](https://github.com/alexcrichton/flate2-rs) compression
|
||||||
library.
|
library.
|
||||||
|
|
||||||
## [Api Documentation](http://docs.rs/bincode/)
|
## [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.
|
* [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.
|
* [servo/ipc-channel](https://github.com/servo/ipc-channel): IPC-Channel uses Bincode to send structs between processes using a channel-like API.
|
||||||
|
|
||||||
## Example
|
## Example
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue