1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! A collection of codecs that can be used to transform between bytes streams /
//! byte messages, byte frames and structured events.

#![deny(missing_docs)]

mod decoding;
mod encoding;
mod ready_frames;

pub use decoding::{Decoder, DecodingConfig};
pub use encoding::{
    Encoder, EncodingConfig, EncodingConfigWithFraming, SinkType, TimestampFormat, Transformer,
};
pub use ready_frames::ReadyFrames;