brainwires-network 0.10.0

Agent-to-agent networking — IPC, remote bridge, mesh networking, routing, and discovery for Brainwires
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Distributed agent mesh networking.
//!
//! Cross-mesh federation and topology management.

/// Federation gateways and policies for cross-mesh communication.
pub mod federation;
/// Mesh topology management and layout types.
pub mod topology;

pub use federation::{FederationGateway, FederationPolicy};
pub use topology::{MeshTopology, TopologyType};