-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[websocket] Switch async-tls to futures-rustls #1889
Conversation
Oh, I noticed that |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, looks innocent enough to me. I'm not familiar with the details of async-tls
and async-rustls
, so I take your word for it that this is a step forward. Since async-tls
seems to look for new maintainers, this may be a good change in any case. I don't think the rustls
version used matters, unless 0.19
has some critical patches over 0.18
.
The maintenance status of |
Thanks and apologies for the late reply. So just to summarise before proceeding here, there now is |
You can see many issues in the old
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry, I confused async-rusttls
with futures-rustls
and thus thought #1889 (comment) suggests to put this on hold. Never mind.
This PR replace
async-tls
withasync-rustls
.async-rustls
is based on a newer version oftokio-rustls
, which fixes many known bugs.