You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rustls crate has made a number of breaking changes in v0.22. Most of them require reading documentation and seeing what rustls expects of their users now.
The new Cargo.toml would have these (and corresponding .workspace=true entries)
rustls = "0.22"rustls-native-certs = "0.7"rustls-pemfile = "2"rustls-pki-types = { version = "1" } # Probably neededrustls-webpki = { version = "0.102" } # Might be needed?webpki-roots = { version = "0.26" } # Might be needed?
The text was updated successfully, but these errors were encountered:
Rustls crate has made a number of breaking changes in v0.22. Most of them require reading documentation and seeing what rustls expects of their users now.
The new
Cargo.toml
would have these (and corresponding.workspace=true
entries)The text was updated successfully, but these errors were encountered: