mirror of
https://github.com/tower-rs/tower.git
synced 2026-04-18 20:56:13 +00:00
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.
Tower Buffer
Tower middleware providing a buffering layer in front of an inner Service.