5 releases

0.2.0 Jul 14, 2023
0.1.3 Feb 18, 2023
0.1.2 Nov 17, 2022
0.1.1 Jun 17, 2022
0.1.0 May 22, 2022

#553 in HTTP client

Download history 11/week @ 2024-10-08 8/week @ 2024-10-15 17/week @ 2024-10-22 11/week @ 2024-10-29 5/week @ 2024-11-05 1/week @ 2024-11-12 12/week @ 2024-11-19 16/week @ 2024-11-26 25/week @ 2024-12-03 92/week @ 2024-12-10 15/week @ 2024-12-17 273/week @ 2025-01-14 386/week @ 2025-01-21

659 downloads per month
Used in 4 crates (3 directly)

MIT/Apache

12KB
117 lines

surf-governor

A rate-limiting middleware for surf

Install

With cargo add installed :

cargo add surf-governor

Documentation

Example

use surf_governor::GovernorMiddleware;
use surf::{Client, Request, http::Method};
use url::Url;

#[async_std::main]
async fn main() -> surf::Result<()> {
    let req = Request::new(Method::Get, Url::parse("https://example.api")?);
    let client = Client::new().with(GovernorMiddleware::per_second(1)?);
    let res = client.send(req).await?;
    Ok(())
}

lib.rs:

A surf middleware that implements rate-limiting using governor. The majority of this has been copied from tide-governor

Example

use surf_governor::GovernorMiddleware;
use surf::{Client, Request, http::Method};
use url::Url;

#[async_std::main]
async fn main() -> surf::Result<()> {
    let req = Request::new(Method::Get, Url::parse("https://example.api")?);
    // Construct Surf client with a governor
    let client = Client::new().with(GovernorMiddleware::per_second(30)?);
    let res = client.send(req).await?;
    Ok(())
}

Dependencies

~11–19MB
~247K SLoC