reqwest-sse
reqwest-sse is a lightweight Rust library that extends reqwest by adding native support of
Server-Sent Events (SSE).
It introduces the EventSource trait, which extends reqwest's Response type with an ergonomic .events() method.
This method transforms the response body into an asynchronous Stream of SSE Events, enabling seamless integration
of real-time event handling in applications using the familiar reqwest HTTP client and the StreamExt API.
Example
use StreamExt;
use EventSource;
async