dtypes/lib.rs
1//! This crate implements various types that can be used in a distributed environment.
2//! As a backend, it uses different backends. They are implemented in the submodules and can be installed separately.
3//! The usage of the types can vary depending on the backend. So examples are provided in the submodules.
4//!
5//! # Crate features
6//!
7//! By default, the crate uses the Redis backend. If you want to use another backend, you can enable other backends. For best performance, you should only enable one backend.
8//!
9//! Backend features:
10//! * [redis]: Enables the Redis backend. (Default)
11
12/// This module contains the types that can be used with a Redis backend. Must be enabled by feature `redis`.
13#[cfg(feature = "redis")]
14pub mod redis;