Skip to main content

hashiverse_lib/client/client_storage/
mod.rs

1//! # Pluggable client-side key-value store
2//!
3//! The `ClientStorage` trait and its bundled backends — an in-memory store for
4//! tests and a SQLite store for native deployments. The WASM client crate
5//! supplies an IndexedDB implementation on top of the same trait.
6
7pub mod client_storage;
8pub mod mem_client_storage;
9#[cfg(not(target_arch = "wasm32"))]
10pub mod sqlite_client_storage;