Cargo Features

HeBo has no features set by default.

[dependencies]
hebo = { version = "0.3.3", features = ["full", "mongodb_conn", "mysql_conn", "pgsql_conn", "redis_conn", "jemallocator"] }
full = mongodb_conn, mysql_conn, pgsql_conn, redis_conn
mongodb_conn full? = mongodb

Affects connectors::mongo_conn

mysql_conn full? = mysql_async

Affects connectors::mysql_conn

pgsql_conn full? = tokio-postgres

Affects connectors::pgsql_conn

redis_conn full? = redis

Affects connectors::redis_conn

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.

jemallocator implicit feature

Enables jemallocator

jemallocator:

A Rust allocator backed by jemalloc

mongodb mongodb_conn?
mysql_async mysql_conn?

Enables mysql_async ^0.31.2

redis redis_conn?

Enables redis ^0.22.3

tokio-postgres pgsql_conn?