monoio_codec/
lib.rs

1#![allow(stable_features)]
2
3mod async_codec;
4mod framed;
5pub mod length_delimited;
6mod sync_codec;
7
8pub use async_codec::{AsyncDecoder, AsyncEncoder};
9#[deprecated]
10pub use framed::StreamWithCodec as NextWithCodec;
11pub use framed::{Framed, FramedRead, FramedWrite, SinkWithCodec, StreamWithCodec};
12pub use sync_codec::{Decoded, Decoder, Encoder};