fred 10.1.0

An async client for Redis and Valkey.
Documentation
1
2
3
4
5
6
7
8
9
10
#![doc = include_str!("./README.md")]

pub mod disabled;
#[cfg(any(feature = "full-tracing", feature = "partial-tracing"))]
mod enabled;

#[cfg(not(any(feature = "full-tracing", feature = "partial-tracing")))]
pub use disabled::*;
#[cfg(any(feature = "full-tracing", feature = "partial-tracing"))]
pub use enabled::*;