seanmonstar / reqwest

An easy and powerful Rust HTTP Client
https://docs.rs/reqwest
Apache License 2.0
9.96k stars 1.13k forks source link

reqwest 0.12.5 introduced rustls dependency on users of "http2" + "native-tls" #2443

Closed talagrand closed 1 month ago

talagrand commented 1 month ago

When compiling reqwest with default features, or with: default-features = false, features= ["http2", "native-tls"]

hyper-rustls is introduced as a dependency, which brings in rustls. This may have been introduced by #2315

We're striving to avoid additional crypto dependencies, so this is problematic from a dependency analysis perspective.

seanmonstar commented 1 month ago

This is a duplicate of #2320.