1
0
mirror of https://github.com/fafhrd91/actix-net synced 2025-09-01 02:36:59 +02:00

add BytesCodec

This commit is contained in:
Nikolay Kim
2018-10-24 10:43:30 -07:00
parent ff914f79fc
commit e1418018c6
2 changed files with 35 additions and 0 deletions

View File

@@ -12,11 +12,13 @@
#![deny(missing_docs, missing_debug_implementations, warnings)]
mod bcodec;
mod framed;
mod framed2;
mod framed_read;
mod framed_write;
pub use self::bcodec::BytesCodec;
pub use self::framed::{Framed, FramedParts};
pub use self::framed2::{Framed2, FramedParts2};
pub use self::framed_read::FramedRead;