Skip to content

Releases: plabayo/tower-async

tower-async-test 0.1.1

18 Jul 09:45
Compare
Choose a tag to compare
  • Improve, expand and fix documentation;

tower-async-service 0.1.1

18 Jul 09:46
Compare
Choose a tag to compare
  • Improve, expand and fix documentation;

tower-async-layer 0.1.1

18 Jul 09:46
Compare
Choose a tag to compare
  • Improve, expand and fix documentation;

tower-async-http 0.1.1

18 Jul 09:46
Compare
Choose a tag to compare
  • Improve, expand and fix documentation;

tower-async-bridge 0.1.1

18 Jul 09:46
Compare
Choose a tag to compare
  • Improve, expand and fix documentation;

tower-async 0.1.1

18 Jul 09:47
Compare
Choose a tag to compare
  • Improve, expand and fix documentation;

tower-async-test 0.1.0

17 Jul 21:47
Compare
Choose a tag to compare

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

17 Jul 21:23
Compare
Choose a tag to compare

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

17 Jul 21:31
Compare
Choose a tag to compare

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

17 Jul 21:57
Compare
Choose a tag to compare

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 of tower-service;
  • make use of tower-async-layer instead of tower-layer,