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
{{ message }}
This repository has been archived by the owner on Oct 19, 2024. It is now read-only.
Is your feature request related to a problem? Please describe.
Currently, ethers-providers crate uses tokio-tungstenite with tls feature flag, which would use async-native-tls crate.
in Linux that means Openssl .. and you know what happens when you use Openssl and try to compile your cli/project to musl target!.
Is your feature request related to a problem? Please describe.
Currently,
ethers-providers
crate usestokio-tungstenite
withtls
feature flag, which would useasync-native-tls
crate.in Linux that means Openssl .. and you know what happens when you use Openssl and try to compile your cli/project to
musl
target!.Describe the solution you'd like
I would like to have an option to enable the
rustls-tls
feature instead of thetls
default one.see: https://docs.rs/crate/tokio-tungstenite/0.14.0/features
Describe alternatives you've considered
Enable
rustls-tls
by default, which is more secure and more importantly easy to cross compile.Additional context
CI Fails because of this: https://github.com/webb-tools/webb-rs/runs/2910394664?check_suite_focus=true
The text was updated successfully, but these errors were encountered: