x0x 0.23.1

Agent-to-agent gossip network for AI systems — no winners, no losers, just cooperation
Documentation
//! 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(crate) mod wire;

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