tower-limit 0.3.1

Limit maximum request rate to a `Service`.
Documentation
1
2
3
4
5
6
7
8
//! Limit the max number of requests being concurrently processed.

pub mod future;
mod layer;
mod service;
mod sync;

pub use self::{layer::ConcurrencyLimitLayer, service::ConcurrencyLimit};