x0x 0.19.4

Agent-to-agent gossip network for AI systems — no winners, no losers, just cooperation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Gossip overlay networking for x0x.
//!
//! This module provides the gossip network layer built on saorsa-gossip,
//! enabling pub/sub messaging and HyParView membership management.

pub mod config;
pub mod pubsub;
pub mod runtime;

pub use config::GossipConfig;
pub use pubsub::{
    PubSubManager, PubSubMessage, PubSubStats, PubSubStatsSnapshot, SigningContext, Subscription,
};
pub use runtime::{
    DispatchStreamStats, DispatchStreamStatsSnapshot, GossipDispatchStats,
    GossipDispatchStatsSnapshot, GossipRuntime,
};