hyperium / hyper-tls

Apache License 2.0
189 stars 96 forks source link

Implement AsyncRead + AsyncWrite from tokio_io #2

Closed mgattozzi closed 7 years ago

mgattozzi commented 7 years ago

The recent PR to Hyper has caused a breaking change that makes this not work with the code from that commit onwards. It seems like the only thing needed to get hyper-tls working again is for it to implement the AsyncRead and AsyncWrite traits from tokio_io. This will allow it to work as a connector again for Hyper.

seanmonstar commented 7 years ago

Thanks for pointing this out. I've just pushed updated impls for this crate.

mgattozzi commented 7 years ago

No problem! Thanks for updating them so quickly, this helps a lot.