tower-async-bridge 0.2.0

Bridges a `tower-async` `Service` to be used within a `tower` (classic) environment, and also the other way around.
Documentation
1
2
3
4
5
6
7
8
9
10
mod classic_service;
mod classic_wrapper;

pub use classic_service::ClassicServiceExt;
pub use classic_wrapper::ClassicServiceWrapper;

#[cfg(feature = "into_async")]
mod classic_layer;
#[cfg(feature = "into_async")]
pub use classic_layer::{ClassicLayer, ClassicLayerExt};