Expand description
HTTP framework adapters for server and client implementations.
This module contains adapters for different HTTP frameworks, following the adapter pattern.
Each adapter implements the appropriate trait (HttpClient for clients, HttpHandler for servers)
to provide integration with specific HTTP libraries.
§Available Adapters
§Server Adapters
axum- Axum web framework adapter (requiresaxum-adapterfeature)sse_axum- Axum SSE adapter for Server-Sent Events (requiresaxum-adapterfeature)websocket_axum- Axum WebSocket adapter for bidirectional messaging (requiresaxum-adapterfeature)
§Client Adapters
reqwest- Reqwest HTTP client adapter (requiresreqwest-adapterfeature)
Modules§
- axum
- Axum web framework adapter for HTTP server handling.
- reqwest
- Reqwest HTTP client adapter.
- sse_
axum - websocket_
axum