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
Is your feature request related to a problem? Please describe.
Right now you use the reqwest crate with default features. By default it uses native-tls which is a bit of a pain to build for android since you need your own openssl dependency. Could you add features to this crate which allow us to use a rustls implementation for tls?
Describe the solution you'd like
Eg (note the default-features=false since it's required to avoid the native-tls dependency in reqwest):
reqwest = { version = "0.12.9",default-features = false, features = ["rustls-tls"]}
The text was updated successfully, but these errors were encountered:
Version 10.0.6 now has the use-rustls feature. I also discovered a discussion on Reqwest about using rustls as the default which I will start tracking.
Let me know if this works for you, and thanks for taking the time to open the issue!
Feature request
Is your feature request related to a problem? Please describe.
Right now you use the reqwest crate with default features. By default it uses native-tls which is a bit of a pain to build for android since you need your own openssl dependency. Could you add features to this crate which allow us to use a rustls implementation for tls?
Describe the solution you'd like
Eg (note the default-features=false since it's required to avoid the native-tls dependency in reqwest):
The text was updated successfully, but these errors were encountered: