- all: new functions const when possible (#760)
- documentation: Clarify subtlety around cloning and readiness in the
Service
docs. (#622) - documentation: service: Call inner.poll_ready() in docs when cloning inner (#679)
- Improve example in
Service
docs. (#510)
- Update to
futures 0.3
. - Update documentation for
std::future::Future
.
- Documentation fixes.
- Switch to
std::future::Future
- Change
Service
'sRequest
associated 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::MakeService
instead. - Remove
Service::ready
andReady
, usetower_util::ServiceExt
instead.
- Initial release