serde-stream-formats 0.1.0

Bounded-memory streaming encode and incremental decode for Serde wire formats (JSON, YAML, MessagePack, Postcard) with typed failures
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![doc = include_str!("../README.md")]

mod decode;
mod encode;
mod error;

#[cfg(test)]
mod tests;

pub use decode::DecodeFormat;
pub use encode::{
    EncodeFormat,
    EncodedStream,
};
pub use error::{
    FormatError,
    PayloadLimitExceeded,
};