tower/tower-rate-limit
Lucio Franco c5d70481bd
layer: Add `tower-layer` and the `Layer` trait (#163)
This change introduces the new `tower-layer` crate and the foundational `Layer` trait to go along with it. This trait allows one to easily compose a set of `Service`s that take an inner service. These services only modify the request/response. This also provides the `Layer` implementation for many of the tower crates.
2019-02-27 15:28:42 -05:00
..
src layer: Add `tower-layer` and the `Layer` trait (#163) 2019-02-27 15:28:42 -05:00
tests Require `poll_ready` to be called before `call` (#161) 2019-02-21 12:18:56 -08:00
Cargo.toml layer: Add `tower-layer` and the `Layer` trait (#163) 2019-02-27 15:28:42 -05:00
README.md License Tower under MIT only 2017-11-16 09:44:44 -08:00

README.md

Tower Rate Limit

A Tower middleware that rate limits the requests that are passed to the inner service.