messaggero 0.1.1

High-performance agent-to-agent communication protocol for Rust. A2A-compatible over HTTP/JSON-RPC with a zero-overhead binary fast path over Unix sockets for local multi-agent systems.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![allow(clippy::all)]

pub mod agent;
pub mod codec;
pub mod error;
pub mod jsonrpc;
pub mod types;

pub use agent::*;
pub use codec::Encoding;
pub use error::*;
pub use types::*;