From 50b0a592d3b332380e4f3e4043fec7511053a6fa Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 16 Jun 2026 09:24:33 +0000 Subject: [PATCH] build(deps): bump reqwest from 0.12.26 to 0.13.4 Bumps [reqwest](https://github.com/seanmonstar/reqwest) from 0.12.26 to 0.13.4. - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.12.26...v0.13.4) --- updated-dependencies: - dependency-name: reqwest dependency-version: 0.13.4 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 43 +++++++++++++++++++++++++++++++++++++------ Cargo.toml | 2 +- 2 files changed, 38 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2a391fff70a..ffa55c6e547 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3087,7 +3087,7 @@ checksum = "209cc18fddbe7caf18c1cacf692ecc60b7cb8b17423644abd5e9ca0283a27ecc" dependencies = [ "async-trait", "percent-encoding", - "reqwest", + "reqwest 0.12.28", "serde", "serde_json", "serde_with", @@ -3547,7 +3547,7 @@ dependencies = [ "getrandom 0.2.15", "http 1.4.2", "rand 0.8.6", - "reqwest", + "reqwest 0.12.28", "serde", "serde_json", "serde_path_to_error", @@ -4480,9 +4480,41 @@ checksum = "ba39f3699c378cd8970968dcbff9c43159ea4cfbd88d43c00b22f2ef10a435d2" [[package]] name = "reqwest" -version = "0.12.26" +version = "0.12.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3b4c14b2d9afca6a60277086b0cc6a6ae0b568f6f7916c943a8cdc79f8be240f" +checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147" +dependencies = [ + "base64 0.22.1", + "bytes", + "futures-core", + "http 1.4.2", + "http-body", + "http-body-util", + "hyper", + "hyper-util", + "js-sys", + "log", + "percent-encoding", + "pin-project-lite", + "serde", + "serde_json", + "serde_urlencoded", + "sync_wrapper", + "tokio", + "tower", + "tower-http", + "tower-service", + "url", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", +] + +[[package]] +name = "reqwest" +version = "0.13.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "219c5811de6525e5416c7d5d53bb656d3afdbc6c5af816e0802bcfa42dbdc1c3" dependencies = [ "base64 0.22.1", "bytes", @@ -4503,7 +4535,6 @@ dependencies = [ "rustls-pki-types", "serde", "serde_json", - "serde_urlencoded", "sync_wrapper", "tokio", "tokio-native-tls", @@ -7252,7 +7283,7 @@ dependencies = [ "password-hash 0.6.1", "pem", "rand 0.8.6", - "reqwest", + "reqwest 0.13.4", "rstest", "rusty-jwt-tools", "scraper", diff --git a/Cargo.toml b/Cargo.toml index 54fa5096dc5..47a9f6b221b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -113,7 +113,7 @@ keycloak = { version = "26.6.1", default-features = false, features = [ ] } native-tls = { version = "0.2", default-features = false } oauth2 = { version = "5", default-features = false } -reqwest = { version = "0.12", default-features = false, features = [ +reqwest = { version = "0.13", default-features = false, features = [ "native-tls", ] } testcontainers = { version = "0.27", features = ["reusable-containers"] }