Skip to content

Update Rust crate reqwest to 0.13#64

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/reqwest-0.x
Open

Update Rust crate reqwest to 0.13#64
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/reqwest-0.x

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Sep 20, 2022

This PR contains the following updates:

Package Type Update Change
reqwest dependencies minor 0.120.13

Release Notes

seanmonstar/reqwest (reqwest)

v0.13.4

Compare Source

  • Add ClientBuilder::tls_sslkeylogfile(bool) option to allow using the related environment variable.
  • Add ClientBuilder::http2_keep_alive_* options for the blocking client.
  • Add TLS 1.3 support when using native-tls backend.
  • Fix redirect handling to strip sensitive headers when the scheme changes.
  • Fix HTTP/3 happy-eyeball connection creation.
  • Upgrade hickory-resolver to 0.26.

v0.13.3

Compare Source

  • Fix CertificateRevocationList parsing of PEM values.
  • Fix logging in resolver to only show host, not full URL.
  • Fix hickory-dns to fallback to a default if /etc/resolv.conf fails.
  • Fix HTTP/3 to handle STOP_SENDING as not an error.
  • Fix HTTP/3 pool to remove timed out QUIC connections.
  • Fix HTTP/3 connection establishment picking IPv4 and IPv6.
  • Upgrade rustls-platform-verifier.
  • (wasm) Only use wasm-bindgen on unknown-* targets.

v0.13.2

Compare Source

  • Fix HTTP/2 and native-tls ALPN feature combinations.
  • Fix HTTP/3 to send h3 ALPN.
  • (wasm) fix RequestBuilder::json() from override previously set content-type.

v0.13.1

Compare Source

  • Fixes compiling with rustls on Android targets.

v0.13.0

Compare Source

  • Breaking changes:
    • rustls is now the default TLS backend, instead of native-tls.
    • rustls crypto provider defaults to aws-lc instead of ring. (rustls-no-provider exists if you want a different crypto provider)
    • rustls-tls has been renamed to rustls.
    • rustls roots features removed, rustls-platform-verifier is used by default.
      • To use different roots, call tls_certs_only(your_roots).
    • native-tls now includes ALPN. To disable, use native-tls-no-alpn.
    • query and form are now crate features, disabled by default.
    • Long-deprecated methods and crate features have been removed (such as trust-dns, which was renamed hickory-dns a while ago).
  • Many TLS-related methods renamed to improve autocompletion and discovery, but previous name left in place with a "soft" deprecation. (just documented, no warnings)
    • For example, prefer tls_backend_rustls() over use_rustls_tls().

v0.12.28

  • Fix compiling on Windows if TLS and SOCKS features are not enabled.

v0.12.27

  • Add ClientBuilder::windows_named_pipe(name) option that will force all requests over that Windows Named Piper.

v0.12.26

  • Fix sending Accept-Encoding header only with values configured with reqwest, regardless of underlying tower-http config.

v0.12.25

  • Add Error::is_upgrade() to determine if the error was from an HTTP upgrade.
  • Fix sending Proxy-Authorization if only username is configured.
  • Fix sending Proxy-Authorization to HTTPS proxies when the target is HTTP.
  • Refactor internal decompression handling to use tower-http.

v0.12.24

  • Refactor cookie handling to an internal middleware.
  • Refactor internal random generator.
  • Refactor base64 encoding to reduce a copy.
  • Documentation updates.

v0.12.23

  • Add ClientBuilder::unix_socket(path) option that will force all requests over that Unix Domain Socket.
  • Add ClientBuilder::retry(policy) and reqwest::retry::Builder to configure automatic retries.
  • Add ClientBuilder::dns_resolver2() with more ergonomic argument bounds, allowing more resolver implementations.
  • Add http3_* options to blocking::ClientBuilder.
  • Fix default TCP timeout values to enabled and faster.
  • Fix SOCKS proxies to default to port 1080
  • (wasm) Add cache methods to RequestBuilder.

v0.12.22

  • Fix socks proxies when resolving IPv6 destinations.

v0.12.21

  • Fix socks proxy to use socks4a:// instead of socks4h://.
  • Fix Error::is_timeout() to check for hyper and IO timeouts too.
  • Fix request Error to again include URLs when possible.
  • Fix socks connect error to include more context.
  • (wasm) implement Default for Body.

v0.12.20

  • Add ClientBuilder::tcp_user_timeout(Duration) option to set TCP_USER_TIMEOUT.
  • Fix proxy headers only using the first matched proxy.
  • (wasm) Fix re-adding Error::is_status().

v0.12.19

  • Fix redirect that changes the method to GET should remove payload headers.
  • Fix redirect to only check the next scheme if the policy action is to follow.
  • (wasm) Fix compilation error if cookies feature is enabled (by the way, it's a noop feature in wasm).

v0.12.18

  • Fix compilation when socks enabled without TLS.

v0.12.17

  • Fix compilation on macOS.

v0.12.16

  • Add ClientBuilder::http3_congestion_bbr() to enable BBR congestion control.
  • Add ClientBuilder::http3_send_grease() to configure whether to send use QUIC grease.
  • Add ClientBuilder::http3_max_field_section_size() to configure the maximum response headers.
  • Add ClientBuilder::tcp_keepalive_interval() to configure TCP probe interval.
  • Add ClientBuilder::tcp_keepalive_retries() to configure TCP probe count.
  • Add Proxy::headers() to add extra headers that should be sent to a proxy.
  • Fix redirect::Policy::limit() which had an off-by-1 error, allowing 1 more redirect than specified.
  • Fix HTTP/3 to support streaming request bodies.
  • (wasm) Fix null bodies when calling Response::bytes_stream().

v0.12.15

  • Fix Windows to support both ProxyOverride and NO_PROXY.
  • Fix http3 to support streaming response bodies.
  • Fix http3 dependency from public API misuse.

v0.12.14

  • Fix missing fetch_mode_no_cors(), marking as deprecated when not on WASM.

v0.12.13

  • Add Form::into_reader() for blocking multipart forms.
  • Add Form::into_stream() for async multipart forms.
  • Add support for SOCKS4a proxies.
  • Fix decoding responses with multiple zstd frames.
  • Fix RequestBuilder::form() from overwriting a previously set Content-Type header, like the other builder methods.
  • Fix cloning of request timeout in blocking::Request.
  • Fix http3 synchronization of connection creation, reducing unneccesary extra connections.
  • Fix Windows system proxy to use ProxyOverride as a NO_PROXY value.
  • Fix blocking read to correctly reserve and zero read buffer.
  • (wasm) Add support for request timeouts.
  • (wasm) Fix Error::is_timeout() to return true when from a request timeout.

v0.12.12

  • (wasm) Fix compilation by not compiler tokio/time on WASM.

v0.12.11

  • Fix decompression returning an error when HTTP/2 ends with an empty data frame.

v0.12.10

  • Add ClientBuilder::connector_layer() to allow customizing the connector stack.
  • Add ClientBuilder::http2_max_header_list_size() option.
  • Fix propagating body size hint (content-length) information when wrapping bodies.
  • Fix decompression of chunked bodies so the connections can be reused more often.

v0.12.9

  • Add tls::CertificateRevocationLists support.
  • Add crate features to enable webpki roots without selecting a rustls provider.
  • Fix connection_verbose() to output read logs.
  • Fix multipart::Part::file() to automatically include content-length.
  • Fix proxy to internally no longer cache system proxy settings.

v0.12.8

  • Add support for SOCKS4 proxies.
  • Add multipart::Form::file() method for adding files easily.
  • Add Body::wrap() to wrap any http_body::Body type.
  • Fix the pool configuration to use a timer to remove expired connections.

v0.12.7

  • Revert adding impl Service<http::Request<_>> for Client.

v0.12.6

  • Add support for danger_accept_invalid_hostnames for rustls.
  • Add impl Service<http::Request<Body>> for Client and &'_ Client.
  • Add support for !Sync bodies in Body::wrap_stream().
  • Enable happy eyeballs when hickory-dns is used.
  • Fix Proxy so that HTTP(S)_PROXY values take precedence over ALL_PROXY.
  • Fix blocking::RequestBuilder::header() from unsetting sensitive on passed header values.

v0.12.5

  • Add blocking::ClientBuilder::dns_resolver() method to change DNS resolver in blocking client.
  • Add http3 feature back, still requiring reqwest_unstable.
  • Add rustls-tls-no-provider Cargo feature to use rustls without a crypto provider.
  • Fix Accept-Encoding header combinations.
  • Fix http3 resolving IPv6 addresses.
  • Internal: upgrade to rustls 0.23.

v0.12.4

  • Add zstd support, enabled with zstd Cargo feature.
  • Add ClientBuilder::read_timeout(Duration), which applies the duration for each read operation. The timeout resets after a successful read.

v0.12.3

  • Add FromStr for dns::Name.
  • Add ClientBuilder::built_in_webpki_certs(bool) to enable them separately.
  • Add ClientBuilder::built_in_native_certs(bool) to enable them separately.
  • Fix sending content-length: 0 for GET requests.
  • Fix response body content_length() to return value when timeout is configured.
  • Fix ClientBuilder::resolve() to use lowercase domain names.

v0.12.2

  • Fix missing ALPN when connecting to socks5 proxy with rustls.
  • Fix TLS version limits with rustls.
  • Fix not detected ALPN h2 from server with native-tls.

v0.12.1

  • Fix ClientBuilder::interface() when no TLS is enabled.
  • Fix TlsInfo::peer_certificate() being truncated with rustls.
  • Fix panic if http2 feature disabled but TLS negotiated h2 in ALPN.
  • Fix Display for Error to not include its source error.

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot force-pushed the renovate/reqwest-0.x branch 2 times, most recently from f6af7b5 to 35591f4 Compare September 28, 2022 16:51
@renovate renovate Bot force-pushed the renovate/reqwest-0.x branch from 35591f4 to e5d31e3 Compare October 21, 2022 17:38
@renovate renovate Bot force-pushed the renovate/reqwest-0.x branch from e5d31e3 to 74acca3 Compare November 16, 2022 18:40
@renovate renovate Bot changed the title Update Rust crate reqwest to 0.11.12 Update Rust crate reqwest to 0.11.13 Nov 16, 2022
@renovate renovate Bot force-pushed the renovate/reqwest-0.x branch 2 times, most recently from fa660cc to eeac9df Compare November 18, 2022 13:05
@renovate renovate Bot changed the title Update Rust crate reqwest to 0.11.13 fix(deps): update rust crate reqwest to 0.11.13 Dec 18, 2022
@renovate renovate Bot changed the title fix(deps): update rust crate reqwest to 0.11.13 fix(deps): update rust crate reqwest to 0.11.14 Jan 19, 2023
@renovate renovate Bot force-pushed the renovate/reqwest-0.x branch from eeac9df to dac40bd Compare January 19, 2023 21:50
@renovate renovate Bot force-pushed the renovate/reqwest-0.x branch from dac40bd to 001c948 Compare February 13, 2023 18:43
@renovate renovate Bot force-pushed the renovate/reqwest-0.x branch from 001c948 to 2f3005d Compare March 15, 2023 16:52
@renovate renovate Bot changed the title fix(deps): update rust crate reqwest to 0.11.14 fix(deps): update rust crate reqwest to 0.11.15 Mar 20, 2023
@renovate renovate Bot changed the title fix(deps): update rust crate reqwest to 0.11.15 fix(deps): update rust crate reqwest to 0.11.16 Mar 27, 2023
@renovate renovate Bot force-pushed the renovate/reqwest-0.x branch from fcecd47 to c6533f4 Compare March 27, 2023 18:18
@renovate renovate Bot changed the title fix(deps): update rust crate reqwest to 0.11.16 fix(deps): update rust crate reqwest to 0.11.17 Apr 28, 2023
@renovate renovate Bot force-pushed the renovate/reqwest-0.x branch from c6533f4 to cbc7976 Compare April 28, 2023 19:27
@renovate renovate Bot force-pushed the renovate/reqwest-0.x branch from cbc7976 to 2d63cf8 Compare May 17, 2023 01:12
@renovate renovate Bot changed the title fix(deps): update rust crate reqwest to 0.11.17 fix(deps): update rust crate reqwest to 0.11.18 May 17, 2023
@renovate renovate Bot changed the title fix(deps): update rust crate reqwest to 0.11.18 fix(deps): update rust crate reqwest to 0.11.19 Aug 21, 2023
@renovate renovate Bot force-pushed the renovate/reqwest-0.x branch from 2d63cf8 to 34a945a Compare August 21, 2023 20:02
@renovate renovate Bot changed the title fix(deps): update rust crate reqwest to 0.11.19 fix(deps): update rust crate reqwest to 0.11.20 Aug 23, 2023
@renovate renovate Bot force-pushed the renovate/reqwest-0.x branch from 34a945a to 27b4747 Compare August 23, 2023 23:02
@renovate renovate Bot changed the title fix(deps): update rust crate reqwest to 0.11.20 fix(deps): update rust crate reqwest to 0.11.21 Oct 2, 2023
@renovate renovate Bot force-pushed the renovate/reqwest-0.x branch from 27b4747 to fd72104 Compare October 2, 2023 18:34
@renovate renovate Bot changed the title fix(deps): update rust crate reqwest to 0.11.21 fix(deps): update rust crate reqwest to 0.11.22 Oct 3, 2023
@renovate renovate Bot force-pushed the renovate/reqwest-0.x branch from fd72104 to 1b6a79e Compare October 3, 2023 14:02
@renovate renovate Bot force-pushed the renovate/reqwest-0.x branch from 1b6a79e to c27e5bb Compare December 18, 2023 21:47
@renovate renovate Bot changed the title fix(deps): update rust crate reqwest to 0.11.22 fix(deps): update rust crate reqwest to 0.11.23 Dec 18, 2023
@renovate renovate Bot force-pushed the renovate/reqwest-0.x branch from c27e5bb to f563c19 Compare January 31, 2024 18:41
@renovate renovate Bot changed the title fix(deps): update rust crate reqwest to 0.12.1 fix(deps): update rust crate reqwest to 0.12.2 Mar 25, 2024
@renovate renovate Bot force-pushed the renovate/reqwest-0.x branch from 533291c to 09d4de0 Compare April 5, 2024 15:58
@renovate renovate Bot changed the title fix(deps): update rust crate reqwest to 0.12.2 fix(deps): update rust crate reqwest to 0.12.3 Apr 5, 2024
@renovate renovate Bot force-pushed the renovate/reqwest-0.x branch from 09d4de0 to 6ce5fd3 Compare April 19, 2024 22:53
@renovate renovate Bot changed the title fix(deps): update rust crate reqwest to 0.12.3 fix(deps): update rust crate reqwest to 0.12.4 Apr 19, 2024
@renovate renovate Bot force-pushed the renovate/reqwest-0.x branch from 6ce5fd3 to 93428f9 Compare May 5, 2024 13:11
@renovate renovate Bot changed the title fix(deps): update rust crate reqwest to 0.12.4 fix(deps): update rust crate reqwest to 0.12.0 May 5, 2024
@renovate renovate Bot force-pushed the renovate/reqwest-0.x branch from 93428f9 to b4f5a04 Compare August 10, 2025 12:33
@renovate
Copy link
Copy Markdown
Contributor Author

renovate Bot commented Aug 10, 2025

⚠️ Artifact update problem

Renovate failed to update artifacts related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path mvclient/Cargo.toml --workspace
warning: virtual workspace defaulting to `resolver = "1"` despite one or more workspace members being on edition 2021 which implies `resolver = "2"`
  |
  = note: to keep the current resolver, specify `workspace.resolver = "1"` in the workspace root's manifest
  = note: to use the edition 2021 resolver, specify `workspace.resolver = "2"` in the workspace root's manifest
  = note: for more details see https://doc.rust-lang.org/cargo/reference/resolver.html#resolver-versions
    Updating crates.io index
error: failed to select a version for `reqwest`.
    ... required by package `mvsqlite v0.3.22 (/tmp/renovate/repos/github/losfair/mvsqlite/mvsqlite)`
versions that meet the requirements `^0.13` are: 0.13.4, 0.13.3, 0.13.2, 0.13.1, 0.13.0

package `mvsqlite` depends on `reqwest` with feature `rustls-tls` but `reqwest` does not have that feature.
 available features: __native-tls, __native-tls-alpn, __rustls, __rustls-aws-lc-rs, __tls, blocking, brotli, charset, cookies, default, default-tls, deflate, form, gzip, h2, hickory-dns, http2, http3, json, multipart, native-tls, native-tls-no-alpn, native-tls-vendored, native-tls-vendored-no-alpn, query, rustls, rustls-native-certs, rustls-no-provider, socks, stream, system-proxy, webpki-roots, zstd


failed to select a version for `reqwest` which could resolve this conflict

File name: mvfs/Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path mvfs/Cargo.toml --workspace
warning: virtual workspace defaulting to `resolver = "1"` despite one or more workspace members being on edition 2021 which implies `resolver = "2"`
  |
  = note: to keep the current resolver, specify `workspace.resolver = "1"` in the workspace root's manifest
  = note: to use the edition 2021 resolver, specify `workspace.resolver = "2"` in the workspace root's manifest
  = note: for more details see https://doc.rust-lang.org/cargo/reference/resolver.html#resolver-versions
    Updating crates.io index
error: failed to select a version for `reqwest`.
    ... required by package `mvsqlite v0.3.22 (/tmp/renovate/repos/github/losfair/mvsqlite/mvsqlite)`
versions that meet the requirements `^0.13` are: 0.13.4, 0.13.3, 0.13.2, 0.13.1, 0.13.0

package `mvsqlite` depends on `reqwest` with feature `rustls-tls` but `reqwest` does not have that feature.
 available features: __native-tls, __native-tls-alpn, __rustls, __rustls-aws-lc-rs, __tls, blocking, brotli, charset, cookies, default, default-tls, deflate, form, gzip, h2, hickory-dns, http2, http3, json, multipart, native-tls, native-tls-no-alpn, native-tls-vendored, native-tls-vendored-no-alpn, query, rustls, rustls-native-certs, rustls-no-provider, socks, stream, system-proxy, webpki-roots, zstd


failed to select a version for `reqwest` which could resolve this conflict

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path mvsqlite-fuse/Cargo.toml --workspace
warning: virtual workspace defaulting to `resolver = "1"` despite one or more workspace members being on edition 2021 which implies `resolver = "2"`
  |
  = note: to keep the current resolver, specify `workspace.resolver = "1"` in the workspace root's manifest
  = note: to use the edition 2021 resolver, specify `workspace.resolver = "2"` in the workspace root's manifest
  = note: for more details see https://doc.rust-lang.org/cargo/reference/resolver.html#resolver-versions
    Updating crates.io index
error: failed to select a version for `reqwest`.
    ... required by package `mvsqlite v0.3.22 (/tmp/renovate/repos/github/losfair/mvsqlite/mvsqlite)`
versions that meet the requirements `^0.13` are: 0.13.4, 0.13.3, 0.13.2, 0.13.1, 0.13.0

package `mvsqlite` depends on `reqwest` with feature `rustls-tls` but `reqwest` does not have that feature.
 available features: __native-tls, __native-tls-alpn, __rustls, __rustls-aws-lc-rs, __tls, blocking, brotli, charset, cookies, default, default-tls, deflate, form, gzip, h2, hickory-dns, http2, http3, json, multipart, native-tls, native-tls-no-alpn, native-tls-vendored, native-tls-vendored-no-alpn, query, rustls, rustls-native-certs, rustls-no-provider, socks, stream, system-proxy, webpki-roots, zstd


failed to select a version for `reqwest` which could resolve this conflict

File name: mvsqlite/Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path mvsqlite/Cargo.toml --workspace
warning: virtual workspace defaulting to `resolver = "1"` despite one or more workspace members being on edition 2021 which implies `resolver = "2"`
  |
  = note: to keep the current resolver, specify `workspace.resolver = "1"` in the workspace root's manifest
  = note: to use the edition 2021 resolver, specify `workspace.resolver = "2"` in the workspace root's manifest
  = note: for more details see https://doc.rust-lang.org/cargo/reference/resolver.html#resolver-versions
    Updating crates.io index
error: failed to select a version for `reqwest`.
    ... required by package `mvsqlite v0.3.22 (/tmp/renovate/repos/github/losfair/mvsqlite/mvsqlite)`
versions that meet the requirements `^0.13` are: 0.13.4, 0.13.3, 0.13.2, 0.13.1, 0.13.0

package `mvsqlite` depends on `reqwest` with feature `rustls-tls` but `reqwest` does not have that feature.
 available features: __native-tls, __native-tls-alpn, __rustls, __rustls-aws-lc-rs, __tls, blocking, brotli, charset, cookies, default, default-tls, deflate, form, gzip, h2, hickory-dns, http2, http3, json, multipart, native-tls, native-tls-no-alpn, native-tls-vendored, native-tls-vendored-no-alpn, query, rustls, rustls-native-certs, rustls-no-provider, socks, stream, system-proxy, webpki-roots, zstd


failed to select a version for `reqwest` which could resolve this conflict

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path mvstore-stress/Cargo.toml --workspace
warning: virtual workspace defaulting to `resolver = "1"` despite one or more workspace members being on edition 2021 which implies `resolver = "2"`
  |
  = note: to keep the current resolver, specify `workspace.resolver = "1"` in the workspace root's manifest
  = note: to use the edition 2021 resolver, specify `workspace.resolver = "2"` in the workspace root's manifest
  = note: for more details see https://doc.rust-lang.org/cargo/reference/resolver.html#resolver-versions
    Updating crates.io index
error: failed to select a version for `reqwest`.
    ... required by package `mvsqlite v0.3.22 (/tmp/renovate/repos/github/losfair/mvsqlite/mvsqlite)`
versions that meet the requirements `^0.13` are: 0.13.4, 0.13.3, 0.13.2, 0.13.1, 0.13.0

package `mvsqlite` depends on `reqwest` with feature `rustls-tls` but `reqwest` does not have that feature.
 available features: __native-tls, __native-tls-alpn, __rustls, __rustls-aws-lc-rs, __tls, blocking, brotli, charset, cookies, default, default-tls, deflate, form, gzip, h2, hickory-dns, http2, http3, json, multipart, native-tls, native-tls-no-alpn, native-tls-vendored, native-tls-vendored-no-alpn, query, rustls, rustls-native-certs, rustls-no-provider, socks, stream, system-proxy, webpki-roots, zstd


failed to select a version for `reqwest` which could resolve this conflict

@renovate renovate Bot force-pushed the renovate/reqwest-0.x branch from b4f5a04 to e7afe80 Compare October 13, 2025 18:58
@renovate renovate Bot force-pushed the renovate/reqwest-0.x branch from e7afe80 to 1904fb8 Compare December 8, 2025 21:45
@renovate renovate Bot force-pushed the renovate/reqwest-0.x branch from 1904fb8 to c44a025 Compare December 22, 2025 16:51
@renovate renovate Bot force-pushed the renovate/reqwest-0.x branch from c44a025 to 497897d Compare December 30, 2025 16:42
@renovate renovate Bot changed the title fix(deps): update rust crate reqwest to 0.12.0 fix(deps): update rust crate reqwest to 0.13.0 Dec 30, 2025
@renovate renovate Bot force-pushed the renovate/reqwest-0.x branch 2 times, most recently from fea9856 to 1858be9 Compare March 20, 2026 00:44
@renovate renovate Bot changed the title fix(deps): update rust crate reqwest to 0.13.0 fix(deps): update rust crate reqwest to 0.13 Mar 20, 2026
@renovate renovate Bot force-pushed the renovate/reqwest-0.x branch from 1858be9 to c7a107d Compare March 28, 2026 00:42
@renovate renovate Bot force-pushed the renovate/reqwest-0.x branch 2 times, most recently from c191618 to c6ab9ea Compare March 28, 2026 07:54
@renovate renovate Bot force-pushed the renovate/reqwest-0.x branch 2 times, most recently from 8abd7aa to b5a262c Compare March 28, 2026 23:06
@renovate renovate Bot force-pushed the renovate/reqwest-0.x branch 2 times, most recently from 901adf7 to b230d0c Compare April 5, 2026 09:09
@renovate renovate Bot force-pushed the renovate/reqwest-0.x branch from b230d0c to 962e95d Compare April 5, 2026 09:14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants