Bump reqwest to 0.13 + update features#5
Merged
pimfeltkamp merged 1 commit intomainfrom Apr 24, 2026
Merged
Conversation
reqwest 0.13 renamed the 'rustls-tls' feature (rustls + webpki-roots bundled) to require opting in to 'rustls' and a certificate source separately, and gated '.query()' behind a 'query' feature. New feature set: rustls + webpki-roots + json + http2 + query. Closes the failing Dependabot PR #4. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Supersedes Dependabot PR #4 — same reqwest bump (0.12 → 0.13) plus the feature-set adjustments needed to build against 0.13.
Why #4 failed
reqwest 0.13 made two breaking changes that affected us:
rustls-tlsfeature alias. 0.13 requires opting in torustls(the TLS implementation) and a certificate source (webpki-rootsfor Mozilla's bundled roots orrustls-native-certsfor the OS store) as separate features.RequestBuilder::query()behind a newqueryfeature.Fix
webpki-rootskeeps us portable (no dependency on the OS certificate store), matching the behaviour of the oldrustls-tlsalias.Closes #4.
Test plan
cargo check --all-targets— cleancargo clippy --all-targets -- -D warnings— cleancargo test— 25 resource tests + 2 doctests passing