wireframe 0.3.0

Simplify building servers and clients for custom binary protocols.
Documentation
1
2
3
4
5
6
7
8
9
//! RESP protocol codec implementation.
//!
//! This module provides a `FrameCodec` implementation for the Redis
//! Serialization Protocol (RESP).

pub mod codec;
pub mod encode;
pub mod frame;
pub mod parse;