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
We would ideally use the struct update syntax, .. to fill in the non-customized fields (everything but cipher_suites), but we can't do that naively with the Arc<CryptoProvider> we have as a base - we need a CryptoProvider.
Arc::unwrap_or_clone() would allow this in a convenient fashion but we can't use that until our MSRV is >= 1.76, so this issue is a reminder for the future.
The text was updated successfully, but these errors were encountered:
In the crypto provider integration code's
CryptoProviderBuilder
struct (from #441), there is an instance of awkwardCryptoProvider
initialization:We would ideally use the struct update syntax,
..
to fill in the non-customized fields (everything butcipher_suites
), but we can't do that naively with theArc<CryptoProvider>
we have as a base - we need aCryptoProvider
.Arc::unwrap_or_clone()
would allow this in a convenient fashion but we can't use that until our MSRV is >= 1.76, so this issue is a reminder for the future.The text was updated successfully, but these errors were encountered: