Cargo Features

RedDb has no features set by default.

[dependencies]
reddb = { version = "0.2.3", features = ["bin_ser", "json_ser", "ron_ser", "yaml_ser"] }
bin_ser = bincode

Affects reddb::BinDb

json_ser = serde_json

Affects reddb::JsonDb

ron_ser = ron

Affects reddb::RonDb

yaml_ser = serde_yaml

Affects reddb::YamlDb

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.

bincode bin_ser?
ron ron_ser?

Enables ron ^0.6.4

serde_json json_ser?
serde_yaml yaml_ser?

Enables serde_yaml ^0.8.14