All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
- Adapt to new
tower_async::Service
contract:call
takes now&self
instead of&mut self
;call
returnsimpl Future
instead of declared asasync fn
;
- Improve, expand and fix documentation;
This is the initial release 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.