a2a-ao 0.5.0

Rust SDK for the Agent-to-Agent (A2A) protocol — the open standard for agent interoperability (by AgentOven)
Documentation
1
2
3
4
5
6
7
8
9
//! Transport layer — wire-level protocol bindings for A2A.
//!
//! A2A supports multiple transport bindings:
//! - JSON-RPC 2.0 over HTTP (primary)
//! - SSE (Server-Sent Events) for streaming
//! - gRPC (future)

pub mod jsonrpc;
pub mod sse;