Releases: plabayo/tower-async
tower-async-test 0.1.1
- Improve, expand and fix documentation;
tower-async-service 0.1.1
- Improve, expand and fix documentation;
tower-async-layer 0.1.1
- Improve, expand and fix documentation;
tower-async-http 0.1.1
- Improve, expand and fix documentation;
tower-async-bridge 0.1.1
- Improve, expand and fix documentation;
tower-async 0.1.1
- Improve, expand and fix documentation;
tower-async-test 0.1.0
This is the initial realse of tower-async-test
, 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.
This library is very different however then tower-test
, as we have a lot less things to validate,
thanks to the simplification of the tower-async
's Service contract. The approach in how we aid in writing
layer tests is also different, where we make use of a black box builder approach, instead
of the macro util approach taken by tower-test
.
tower-async-service 0.1.0
This is the initial release of tower-async-service
, 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.
tower-async-layer 0.1.0
This is the initial realse of tower-async-layer
, 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.
tower-async-http 0.1.0
This is the initial realse of tower-async-http
, a fork of https://github.com/tower-rs/tower-http 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
,