redis-protocol 6.0.0

An implementation of the RESP2 and RESP3 protocols.
Documentation
#![allow(clippy::unnecessary_fallible_conversions)]
#![allow(clippy::redundant_pattern_matching)]
#![allow(clippy::mutable_key_type)]
#![allow(clippy::derivable_impls)]
#![allow(clippy::enum_variant_names)]
#![allow(clippy::iter_kv_map)]
#![allow(clippy::len_without_is_empty)]
#![allow(clippy::vec_init_then_push)]
#![allow(clippy::while_let_on_iterator)]
#![allow(clippy::type_complexity)]
#![allow(clippy::too_many_arguments)]
#![allow(clippy::disallowed_names)]
#![allow(unused_imports)]

#[macro_use]
extern crate log;
extern crate pretty_env_logger;

#[cfg(feature = "codec")]
mod codec;