tower/tower-filter
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 Format tower with rustfmt; check in CI (#157) 2019-02-11 15:11:31 -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 Filter

A Tower middleware that conditionally allows requests to be dispatched to the inner service based on the result of a predicate.