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
14
15
16
17
//! # Identity Layer
//!
//! Foundational identity types for the agent networking stack.
//!
//! Every agent on the network is represented by an [`AgentIdentity`] which
//! includes a unique identifier, human-readable name, and an [`AgentCard`]
//! that advertises the agent's capabilities, supported protocols, and
//! reachable endpoint.

mod agent_identity;
mod credentials;
/// Internet-facing email identity — send/receive email on behalf of an agent.
#[cfg(feature = "email-identity")]
pub mod email;

pub use agent_identity::{AgentCard, AgentIdentity, ProtocolId};
pub use credentials::{SigningKey, VerifyingKey};