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
I am trying to make a build for target x86_64-unknown-linux-musl using alloy 0.9.2 without linking OpenSSL package to it.
As it stated in features, I added reqwest-rustls-tls feature and default-features = false flag.
Even though rustls was enabled, I see hyper-tls package added to reqwest crate in all alloy dependencies.
This dep breaks musl build.
Is there any solution to exclude unnecessary native/jhyper tls with given feature?
The text was updated successfully, but these errors were encountered:
can you please update to latest version and post all the alloy crates you're importing? we explicitly ban openssl in foundry and reth so that this doesn't happen, which use alloy extensively.
it might be that you forgot a default-features=false in reqwest or an alloy sub crate
Component
meta-crate
What version of Alloy are you on?
alloy v0.9.2
Operating System
Linux
Describe the bug
I am trying to make a build for target
x86_64-unknown-linux-musl
using alloy 0.9.2 without linking OpenSSL package to it.As it stated in features, I added
reqwest-rustls-tls
feature anddefault-features = false
flag.Even though rustls was enabled, I see hyper-tls package added to reqwest crate in all alloy dependencies.
This dep breaks musl build.
Is there any solution to exclude unnecessary native/jhyper tls with given feature?
The text was updated successfully, but these errors were encountered: