Conversation
- reqwest 0.11 → 0.13 (add `query` feature; `multipart` was already enabled) - reqwest-middleware 0.2 → 0.5 (add `query` feature, gated behind cfg in 0.5) - reqwest-retry 0.3 → 0.9 - Fix rustls-tls feature: reqwest/rustls-tls-webpki-roots → reqwest/rustls (renamed in 0.13) - getrandom kept at 0.2/js to preserve wasm32-unknown-unknown feature unification via rand → rand_core → getrandom 0.2 transitive chain - serde 1.0.197 → 1.0.228, serde_json 1.0.114 → 1.0.149, serde_with 3.6 → 3.18 - chrono 0.4.31 → 0.4.44, uuid 1.8 → 1.23, url 2.5.0 → 2.5.8 - async-stream, flate2, futures-core, lazy_static, log, zstd, rustc_version bumped - Dev deps: env_logger 0.10 → 0.11, minijinja 1 → 2, cucumber 0.20 → 0.22, convert_case 0.6 → 0.11, tokio 1.10 → 1.50, futures/regex/sha256 bumped Both wasm32-unknown-unknown and wasm32-wasip2 targets verified to compile. Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
rvcr is not maintained for newer reqwest-middleware versions. The upstream git dep (cb6911d) uses reqwest-middleware 0.2.4 / http 0.2, which is incompatible with the new Middleware trait in 0.5.x (now uses http 1.x Extensions). Add a local patch under patches/rvcr/ with two minimal changes: - Cargo.toml: reqwest 0.11→0.13, reqwest-middleware 0.2.4→0.5.1, http 0.2→1, remove task-local-extensions - src/lib.rs: task_local_extensions::Extensions → http::Extensions in the Middleware::handle signature (the only usage) Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
4 tasks
skarimo
approved these changes
Apr 1, 2026
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
queryand keptmultipartfeatures; fixedrustls-tlsfeature name (rustls-tls-webpki-roots→rustls, renamed in 0.13)queryfeature (now gated behind#[cfg(feature = "query")]in 0.5.x)wasm32-unknown-unknownbuilds — our 0.2 entry exists to propagate thejsfeature to therand → rand_core → getrandom 0.2transitive chain via Cargo version unification; a 0.4 dep would be a separate crate and leave the transitive 0.2 without the featurepatches/rvcr/): upstream is unmaintained against reqwest-middleware 0.4+; theMiddlewaretrait signature changed fromtask_local_extensions::Extensionstohttp::Extensions(http 1.x). Two minimal changes: updated deps inCargo.toml, replaced the singletask_local_extensions::Extensionstype annotation withhttp::ExtensionsinMiddleware::handleLICENSE-3rdparty.csvregeneratedTest plan
cargo checkpasses (native)cargo check --testspassescargo check --target wasm32-unknown-unknown --no-default-features --features wasmpassescargo check --target wasm32-wasip2 --no-default-features --features rustls-tls,retrypasses🤖 Generated with Claude Code