heaplet 0.1.0

A small, in-process, Redis-inspired in-memory store for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Convenience re-exports for common heaplet types.
//!
//! Import this when you want the most-used items in scope with a single `use`:
//!
//! ```rust
//! use heaplet::prelude::*;
//! ```
//!
//! The prelude is intentionally small and stable.

pub use crate::error::Error;
pub use crate::store::Store;