Skip to main content

convergio_mesh/
lib.rs

1//! convergio-mesh — Peer discovery, delta sync, delegation tracking.
2//!
3//! Implements Extension: owns mesh_sync_stats, peer_heartbeats,
4//! host_heartbeats, mesh_peer_state, coordinator_events, delegation_progress.
5
6pub mod auth;
7pub mod capability_registry;
8pub mod capability_routes;
9pub mod capability_types;
10pub mod convergence;
11pub mod delegation;
12pub mod error;
13pub mod ext;
14pub mod mcp_defs;
15pub mod peers_parser;
16pub mod peers_registry;
17pub mod peers_types;
18pub mod routes;
19pub mod routes_cross_poll;
20pub mod routes_role_config;
21pub mod routes_sync_repo;
22pub mod schema;
23pub mod sync;
24pub mod sync_apply;
25pub mod sync_cursor;
26pub mod sync_loop;
27pub mod transport;
28pub mod types;