A dead-simple, pluggable, binary-sorted key-value store for Rust with FoundationDB-style keys. In-memory and SQLite backends. Zero-boilerplate and easy iteration.
//! Key encoding/decoding glue: all traits and helpers for converting to and from binary keys.
pubusekey_traits::{FromKey, IntoKey};pubusetypes::{DecodeError, Key};// Export KeyEncoder/KeyDecoder still from encode/decode as internal only, not public API
pubmoddecode;pubmodencode;modkey_traits;modtypes;