x0x 0.14.3

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
//! 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, SigningContext, Subscription};
pub use runtime::GossipRuntime;