stupid-simple-kv 0.1.0

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.
Documentation
1
2
3
4
5
6
7
8
9
//! Key encoding/decoding glue: all traits and helpers for converting to and from binary keys.
pub use key_traits::{FromKey, IntoKey};
pub use types::{DecodeError, Key};

// Export KeyEncoder/KeyDecoder still from encode/decode as internal only, not public API
pub mod decode;
pub mod encode;
mod key_traits;
mod types;