a2a-rs 0.4.0

Rust implementation of the Agent-to-Agent (A2A) Protocol
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! HTTP transport implementations

#[cfg(feature = "http-client")]
pub mod client;

#[cfg(feature = "http-server")]
pub mod server;

// Re-export HTTP implementations
#[cfg(feature = "http-client")]
pub use client::HttpClient;

#[cfg(feature = "http-server")]
pub use server::HttpServer;