7 releases

0.1.6 Nov 3, 2024
0.1.5 May 20, 2024
0.1.4 Apr 9, 2024
0.1.3 Aug 21, 2020

#224 in Date and time

Download history 3509/week @ 2024-12-15 1128/week @ 2024-12-22 1592/week @ 2024-12-29 4422/week @ 2025-01-05 3861/week @ 2025-01-12 2866/week @ 2025-01-19 3193/week @ 2025-01-26 5108/week @ 2025-02-02 4167/week @ 2025-02-09 2980/week @ 2025-02-16 3643/week @ 2025-02-23 4125/week @ 2025-03-02 4547/week @ 2025-03-09 3856/week @ 2025-03-16 4729/week @ 2025-03-23 3601/week @ 2025-03-30

17,081 downloads per month

MIT license

13KB
101 lines

This crate provides a simple TokenBucket object for use in rate- limiting.

Short Example Program

use tokenbucket::TokenBucket;
use tokenbucket::TokenAcquisitionResult;
use std::{thread, time};

// Will acquire tokens at the specified rate for the specified duration.
// After each acquisition, the AcquisitionResult will be printed.
fn run(bucket: &mut TokenBucket, rate: u32, duration: u32) {
    for _ in 0..=(rate * duration) {
        // Acquire 1 token from the bucket.
        let acquisition: TokenAcquisitionResult = bucket.acquire(1.0);

        // Determine the acquisition result.
        match acquisition {
            Ok(rate)  => println!("rate/allow: {}, true", rate),
            Err(rate) => println!("rate/allow: {}, false", rate),
        }
        
        // Sleep for enough time to match the desired rate/second.
        thread::sleep(time::Duration::from_micros(
            (1000000.0 * (1.0 / rate as f64)) as u64,
        ));
    }
}

fn main() {
    // Create the TokenBucket object
    let mut token_bucket: TokenBucket = TokenBucket::new(5.0, 100.0);

    // Start of by acquiring 60 tokens per second for 10 seconds.
    run(&mut token_bucket, 60, 10);

    // Slow down to 2 tokens per second for 10 seconds.
    run(&mut token_bucket, 2, 10);
}

tokenbucket

Documentation GitHub license Downloads

This library provides a TokenBucket Algorithm implementation for the Rust programming language.

Install

Add the following to your Cargo.toml

[dependencies]
tokenbucket = "0.1.6"

Usage

use tokenbucket::{TokenBucket, TokenAcquisitionResult};

fn main() {
    let mut bucket = TokenBucket::new(5.0, 100.0);
    match bucket.acquire(1.0) {
        Ok(rate)  => println!("rate/allow: {}, true", rate),
        Err(rate) => println!("rate/allow: {}, false", rate),
    }
}

See the documentation for more advanced usage examples.

No runtime deps