Cargo Features

sled_extensions has no features set by default.

[dependencies]
sled-extensions = { version = "0.2.0", features = ["json", "cbor", "bincode"] }
json = serde_json

Affects db::DbExt.open_json_tree, db::DbExt.open_expiring_json_tree, db::DbExt.open_expiring_plain_json_tree, encoding::JsonEncoding, sled-extensions::json

cbor = serde_cbor

Affects db::DbExt.open_cbor_tree, db::DbExt.open_expiring_cbor_tree, db::DbExt.open_expiring_plain_cbor_tree, encoding::CborEncoding, sled-extensions::cbor

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](https://rust-lang.github.io/rfcs/3491-remove-implicit-features.html).

bincode implicit feature

Affects db::DbExt.open_bincode_tree, db::DbExt.open_expiring_bincode_tree, db::DbExt.open_expiring_plain_bincode_tree, encoding::BincodeEncoding, sled-extensions::bincode

serde_cbor cbor?

Enables serde_cbor ^0.10

serde_json json?