Releases: plabayo/tower-async
Releases · plabayo/tower-async
tower-async-bridge 0.1.0
This is the initial realse of tower-async-bridge
, and is meant to bridge services and/or layers
from the https://github.com/tower-rs/tower ecosystem with those from the tower-async
ecosystem
(meaning written using technology of this repository).
The bridging can go in both directions, but does require the into_async
feature to be enabled
in case you want to bridge classic (https://github.com/tower-rs/tower) services and/or layers
into their async (static fn) trait
counterparts.
tower-async 0.1.0
This is the initial realse of tower-async
, a fork of https://github.com/tower-rs/tower and makes use of async traits
(RFC-3185: Static async fn in traits)
to simplify things and make it more easier to integrate async functions into middleware.
Notable differences:
- make use of
tower-async-service
instead oftower-service
; - make use of
tower-async-layer
instead oftower-layer
; - do not support features related to load balancing (we consider this out of scope);
- replace the
limit
module with an approach more fitting fortower-async
.