1.2 KiB
1.2 KiB
Unreleased
- None
0.3.2 (June 17, 2022)
Added
- docs: Clarify subtlety around cloning and readiness in the
Servicedocs (#548) - docs: Clarify details around shared resource consumption in
poll_ready()(#662)
0.3.1 (November 29, 2019)
- Improve example in
Servicedocs. (#510)
0.3.0 (November 29, 2019)
- Update to
futures 0.3. - Update documentation for
std::future::Future.
0.3.0-alpha.2 (September 30, 2019)
- Documentation fixes.
0.3.0-alpha.1 (Aug 20, 2019)
- Switch to
std::future::Future
0.2.0 (Dec 12, 2018)
- Change
Service'sRequestassociated type to be a generic instead.-
Before:
impl Service for Client { type Request = HttpRequest; type Response = HttpResponse; // ... } -
After:
impl Service<HttpRequest> for Client { type Response = HttpResponse; // ... }
-
- Remove
NewService, usetower_util::MakeServiceinstead. - Remove
Service::readyandReady, usetower_util::ServiceExtinstead.
0.1.0 (Aug 9, 2018)
- Initial release