mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-06 14:27:39 +03:00
10 lines
223 B
Rust
10 lines
223 B
Rust
#![deny(rust_2018_idioms, warnings)]
|
|
//! Utilities for encoding and decoding frames.
|
|
|
|
mod bcodec;
|
|
mod decoder;
|
|
mod encoder;
|
|
|
|
pub use self::bcodec::BytesCodec;
|
|
pub use self::decoder::Decoder;
|
|
pub use self::encoder::Encoder;
|