persistent-map 0.1.3

An easy-to-use, async, persistent key-value store for Rust, backed by SQLite and designed for extensibility with other storage backends.
Documentation
1
2
3
4
5
6
#[cfg(feature = "csv_backend")]
pub mod csv;
#[cfg(feature = "in_memory")]
pub mod in_memory;
#[cfg(feature = "sqlite")]
pub mod sqlite;