netabase_store 0.0.8

A type-safe, multi-backend key-value storage library for Rust with support for native (Sled, Redb) and WASM (IndexedDB) environments.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Subscription system for tracking data changes and synchronization
//!
//! This module provides the core subscription functionality that allows tracking
//! changes to stored data and synchronizing between different nodes using merkle trees.

pub mod subscription_tree;

// Re-export the Subscriptions trait from the traits module for convenience
pub use crate::traits::subscription::Subscriptions;

// Re-export ModelHash from canonical traits location
pub use crate::traits::subscription::subscription_tree::ModelHash;