hashiverse-lib 1.0.8

Core protocol library for Hashiverse — your open-source decentralized X/Twitter replacement.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! # Time-ordered walks over the bucket hierarchy
//!
//! A single-source timeline walks one feed (a user's posts, a hashtag, mentions,
//! replies) backwards through time; a multiple-source timeline merges several of
//! those into one chronologically sorted stream. A pure recursive visitor powers
//! the walk, and a short-lived scratch pad stashes just-authored local posts so
//! they appear in the user's own timeline before network propagation completes.

pub mod single_timeline;
pub mod multiple_timeline;
pub mod recent_posts_pen;

pub mod recursive_bucket_visitor;