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
12
13
/// Authentication client for the Brainwires backend.
pub mod client;
/// Session persistence and management.
pub mod session;
/// Authentication types (session, profile, config).
pub mod types;

#[cfg(feature = "auth-keyring")]
pub mod keyring;

pub use client::AuthClient;
pub use session::SessionManager;
pub use types::*;