async_rate_limit/
lib.rs

1
2
3
4
5
6
7
8
//! Common traits for specific rate limiting, with implementations of common rate limiting schemes.
//!
//! These traits and implementations were developed for a single set of use cases, and as
//! such may be missing behavior you would like to see implemented. Please reach out!

pub mod limiters;
pub mod sliding_window;
pub mod token_bucket;