crabtalk-mcp 0.0.22

MCP (Model Context Protocol) client and bridge for Crabtalk
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! HTTP transport for JSON-RPC — exactly one backend is compiled in via
//! the mutually-exclusive `hyper` / `reqwest` crate features.

#[cfg(feature = "hyper")]
mod hyper;
#[cfg(feature = "reqwest")]
mod reqwest;

#[cfg(feature = "hyper")]
pub use hyper::HttpTransport;
#[cfg(feature = "reqwest")]
pub use reqwest::HttpTransport;