Utilities needed to easily implement a Tokio Bincode transport using serde for serialization and deserialization of frame values. Based on tokio-serde.
Tokio-0.2 and later versions have migrated to the std::future
trait. This crate
is based on tokio-0.1 and the out of std futures
crate. tokio-serde v0.6
already supports Bincode and other serialization formats behind Cargo features.
So in order not to duplicate efforts, any new use and development should be based on
tokio-serde. This crate is going to receive only fixes for security issues, if any
is found.
To use tokio-serde-bincode
, first add this to your Cargo.toml
:
[dependencies]
tokio-serde-bincode = "0.2"
Next, add this to your crate:
extern crate tokio_serde_bincode;
use tokio_serde_bincode::{ReadBincode, WriteBincode};
tokio-serde-bincode
is primarily distributed under the terms of both the MIT
license and the Apache License (Version 2.0), with portions covered by various
BSD-like licenses.
See LICENSE-APACHE, and LICENSE-MIT for details.