19 releases (12 breaking)

0.14.0 Feb 24, 2025
0.13.0 Jul 30, 2024
0.12.2 Dec 20, 2023
0.12.0 Nov 15, 2023
0.2.0 Jul 24, 2019

#24 in HTTP client

Download history 34380/week @ 2024-12-01 29592/week @ 2024-12-08 27454/week @ 2024-12-15 12976/week @ 2024-12-22 14259/week @ 2024-12-29 26803/week @ 2025-01-05 25001/week @ 2025-01-12 24015/week @ 2025-01-19 26190/week @ 2025-01-26 26938/week @ 2025-02-02 110942/week @ 2025-02-09 106207/week @ 2025-02-16 129263/week @ 2025-02-23 146581/week @ 2025-03-02 144939/week @ 2025-03-09 116450/week @ 2025-03-16

545,605 downloads per month
Used in 32 crates (19 directly)

Apache-2.0

300KB
1.5K SLoC

eventsource-client

Run CI

Client for the Server-Sent Events protocol (aka EventSource).

Requirements

Requires tokio.

Usage

Example that just prints the type of each event received:

use eventsource_client as es;

let mut client = es::ClientBuilder::for_url("https://example.com/stream")?
    .header("Authorization", "Basic username:password")?
    .build();

client
    .stream()
    .map_ok(|event| println!("got event: {:?}", event))
    .map_err(|err| eprintln!("error streaming events: {:?}", err));

(Some boilerplate omitted for clarity; see examples directory for complete, working code.)

Features

  • tokio-based streaming client.
  • Supports setting custom headers on the HTTP request (e.g. for endpoints requiring authorization).
  • Retry for failed connections.
  • Reconnection if connection is interrupted, with exponential backoff.

Stability

Early stage release for feedback purposes. May contain bugs or performance issues. API subject to change.

Dependencies

~5–16MB
~215K SLoC