Skip to main content

hashiverse_lib/client/post_bundle/
mod.rs

1//! # Post-bundle fetching, caching, healing, and submission
2//!
3//! Two parallel stacks — one for posts themselves and one for their feedback —
4//! each with a trait, a production "live" implementation, and a test stub.
5//! Background reconciliation heals divergent copies across peers, and the
6//! submission helpers orchestrate the two-phase claim+commit for posts and the
7//! single-phase submit for feedback.
8
9pub mod post_bundle_manager;
10pub mod post_bundle_feedback_manager;
11pub mod live_post_bundle_manager;
12pub mod live_post_bundle_feedback_manager;
13pub mod stub_post_bundle_manager;
14pub mod stub_post_bundle_feedback_manager;
15pub mod post_bundle_healing;
16pub mod post_bundle_feedback_healing;
17
18pub mod posting;
19
20
21