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
The idea is to define common interfaces for TlsConnector etc. as traits and implement them in submodules like async_native_tls::rusttls::TlsConnector and async_native_tls::native_tls::client, so it is possible to conditionally use one module or the other, and compile implementations based on selected features.
The idea is to define common interfaces for
TlsConnector
etc. as traits and implement them in submodules likeasync_native_tls::rusttls::TlsConnector
andasync_native_tls::native_tls::client
, so it is possible to conditionally use one module or the other, and compile implementations based on selected features.See async-email/async-smtp#3 (comment)
Then probably rename the module or merge with
async_tls
.This will make it possible to fix async-email/async-smtp#4 without conditional compilation.
The text was updated successfully, but these errors were encountered: