channels-serdes 0.1.2

Utilities to serialize/deserialize types.
Documentation

channels-serdes

This crate exposes the interface used by channels to serialize and deserialize arbitrary types.

It is simply an abstraction layer for different implementations that might not necessarily rely on serde.

The crate contains 3 reference implementations that are all usable under channels and can be enabled with feature flags.

Name Implemented By Feature flag
Bincode bincode bincode
Cbor ciborium cbor
Json serde_json json

Bincode is the default implementation used by channels.