dynomite/proto/mod.rs
1//! Wire-protocol codecs for Dynomite's external surfaces.
2//!
3//! This module exposes:
4//!
5//! * [`dnode`] - the DNODE peer-to-peer codec (Stage 7).
6//! * [`memcache`] - the Memcached text-protocol parser, helpers,
7//! and repair stubs (Stage 8).
8//! * [`redis`] - the Redis (RESP) parser, helpers, and repair
9//! plumbing (Stage 8).
10
11pub mod dnode;
12pub mod memcache;
13pub mod redis;