hashiverse-lib 1.0.7-rc2

Core protocol library for Hashiverse — your open-source decentralized X/Twitter replacement.
1
2
3
4
5
6
7
8
9
10
//! # Pluggable client-side key-value store
//!
//! The `ClientStorage` trait and its bundled backends — an in-memory store for
//! tests and a SQLite store for native deployments. The WASM client crate
//! supplies an IndexedDB implementation on top of the same trait.

pub mod client_storage;
pub mod mem_client_storage;
#[cfg(not(target_arch = "wasm32"))]
pub mod sqlite_client_storage;