redis-protocol 6.0.0

An implementation of the RESP2 and RESP3 protocols.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/// Decoding functions for `BytesMut` and slices.
pub mod decode;
/// Encoding functions for `BytesMut` and slices.
pub mod encode;
/// RESP3 frame types.
pub mod types;

pub(crate) mod utils;

#[cfg(test)]
mod _test {
  #[test]
  #[cfg(feature = "decode-logs")]
  fn _enable_logging() {
    let _ = pretty_env_logger::try_init();
  }
}