Cargo Features

[dependencies]
rustis = { version = "0.13.1", default-features = false, features = ["tokio-runtime", "tokio-tls", "async-std-runtime", "async-std-tls", "pool", "tls", "redis-graph", "redis-time-series", "redis-stack"] }
default = tokio-runtime

The tokio-runtime feature is set by default whenever rustis is added without default-features = false somewhere in the dependency tree.

tokio-runtime default

Enables macros, net and rt of tokio

tokio-tls = tls, tokio-native-tls
async-std-runtime = async-native-tls, async-std

Enables async-std, compat of tokio-util

async-std-tls = async-native-tls, tls
pool = bb8
tls async-std-tls? tokio-tls? = native-tls

Affects config::Config.tls_config, config::TlsConfig

redis-json redis-search redis-graph redis-stack?
redis-bloom redis-time-series redis-stack?
redis-stack = redis-bloom, redis-graph, redis-json, redis-search, redis-time-series

Features from optional dependencies

In crates that don't use the dep: syntax, optional dependencies automatically become Cargo features. These features may have been created by mistake, and this functionality may be removed in the future.

async-std async-std-runtime?
bb8 pool?
native-tls tls?
tokio-native-tls tokio-tls?
async-native-tls async-std-runtime? async-std-tls?