Skip to content

v1.0.0-rc.4

Pre-release
Pre-release
Compare
Choose a tag to compare
@seanmonstar seanmonstar released this 10 Jul 19:26
· 180 commits to master since this release

Bug Fixes

Features

Breaking Changes

  • Any IO transport type provided must not implement hyper::rt::{Read, Write} instead of
    tokio::io traits. You can grab a helper type from hyper-util to wrap Tokio types, or implement the traits yourself,
    if it's a custom type.
    (f9f65b7a)
  • client::conn::http2 types now use another generic for an Executor.
    Code that names Connection needs to include the additional generic parameter.
    (d977f209)
  • The Service::call function no longer takes a mutable reference to self.
    The FnMut trait bound on the service::util::service_fn function and the trait bound
    on the impl for the ServiceFn struct were changed from FnMut to Fn.
    (d894439e)

New Contributors