-
-
Notifications
You must be signed in to change notification settings - Fork 136
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
Remove dependency on webpki
#2267
Conversation
This enables Nagle's algorithm, which after a little reading might not be appropriate for Twilight |
I did not see this prior to opening #2268. I'd like to keep each PR focused on one thing, so if you don't mind I'll go ahead and merge that PR before looking at this. |
Yeah, I'll gladly resolve any conflicts with the base branch (or even remake the PR, it's not that complex)- I just knew that clippy pass is required for merging. |
#2268 is now merged |
Could you split out the twilight-validated fixes too? |
CC @Gelbpunkt as this is essentially a backport of #2201 |
Sure, want me to make a separate PR for the validate stuff? |
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.
Forgot to mark this as request changes
Could you split out the twilight-validated fixes too?
Yes that would be awesome 😊 |
I'm strictly against merging this into main. We should never be updating |
But if the ecosystem's already moved on to the new rustls version, wouldn't Twilight be the reason for downstream users |
I do not think that our slow(er) minor release cadence is justification for breaking with ecosystem semver standards and our own past dependency update policy. |
Oops, did not see this before creating #2270 |
webpki
has recently had an issue with a GitHub advisory being published. While this advisory doesn't really apply to twilight, it's still annoying, so I've updatedhyper-rustls
andtokio-tungstenite
to versions that depend onrustls-webpki
, which is an actively-maintained version ofwebpki
. I also fixed some clippy warnings.