occams-rpc-codec 0.2.0

This is the codec packages for occams_rpc. occams_rpc is a modular, pluggable RPC for high throughput scenario, supports various runtime, with a low-level streaming interface, and high-level remote API call interface.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![cfg_attr(docsrs, feature(doc_cfg))]
#![cfg_attr(docsrs, allow(unused_attributes))]

//! # occams-rpc-codec
//!
//! This crate provides [occams_rpc_core::Codec](https://docs.rs/occams-rpc-core/latest/occams_rpc_core/trait.Codec.html) implementations for [`occams-rpc`](https://docs.rs/occams-rpc) and [`occams-rpc-stream`](https://docs.rs/occams-rpc-stream).
//! It supports different serialization formats, such as `msgpack`.

pub use occams_rpc_core::Codec;
#[cfg(feature = "msgpack")]
mod msgpack;
#[cfg(feature = "msgpack")]
pub use msgpack::*;