feat(client): native HTTP/1.1 client replacing may_http - #1
Conversation
Add feature-gated may_minihttp::client with HttpClient, Request, and Response API-compatible with may_http::client. DELETE/PUT/PATCH write_head is safe (no Drop panic). Enables BRRTRouter to drop the abandoned may_http crate without waiting on upstream.
fd281a6 to
2789db9
Compare
There was a problem hiding this comment.
Code Review
This pull request introduces a native, feature-gated HTTP/1.1 client module (client) to may_minihttp, eliminating the dependency on the abandoned may_http crate. The implementation includes connection management via HttpClient, buffered I/O handling with BufferIo, request and response body streaming using BodyReader and BodyWriter, and outgoing/incoming message models (Request and Response). Additionally, comprehensive documentation, design documents, and epic stories are added to guide the development and integration. As there are no review comments provided, I have no further feedback to offer.
Important
The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.
Add feature-gated may_minihttp::client with HttpClient, Request, and Response API-compatible with may_http::client. DELETE/PUT/PATCH write_head is safe (no Drop panic). Enables BRRTRouter to drop the abandoned may_http crate without waiting on upstream.