From 921257e2e87db35dd5bfbb4f4be283cc33b24362 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 May 2026 16:29:58 +0000 Subject: [PATCH] chore(deps): update reqwest requirement from 0.12 to 0.13 Updates the requirements on [reqwest](https://github.com/seanmonstar/reqwest) to permit the latest version. - [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.0...v0.13.3) --- updated-dependencies: - dependency-name: reqwest dependency-version: 0.13.3 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- typesense/Cargo.toml | 2 +- typesense_codegen/Cargo.toml | 2 +- xtask/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/typesense/Cargo.toml b/typesense/Cargo.toml index d0202aa2..508da227 100644 --- a/typesense/Cargo.toml +++ b/typesense/Cargo.toml @@ -34,7 +34,7 @@ web-time = { workspace = true } # required for wasm32 target # native-only dependencies [target.'cfg(not(target_arch = "wasm32"))'.dependencies] -reqwest = { version = "0.12", features = ["json"] } +reqwest = { version = "0.13", features = ["json"] } reqwest-middleware = { version = "0.4.2"} # wasm deps diff --git a/typesense_codegen/Cargo.toml b/typesense_codegen/Cargo.toml index 873c3daf..afa80540 100644 --- a/typesense_codegen/Cargo.toml +++ b/typesense_codegen/Cargo.toml @@ -9,7 +9,7 @@ license.workspace = true [dependencies] bon = { workspace = true } -reqwest = { version = "0.12", default-features = false, features = ["json"] } +reqwest = { version = "0.13", default-features = false, features = ["json"] } serde = { workspace = true } serde_json = { workspace = true } serde_repr = { workspace = true } diff --git a/xtask/Cargo.toml b/xtask/Cargo.toml index 645e3453..614e8010 100644 --- a/xtask/Cargo.toml +++ b/xtask/Cargo.toml @@ -8,7 +8,7 @@ edition.workspace = true anyhow = { workspace = true } clap = { workspace = true } indexmap = { workspace = true } -reqwest = { version = "0.12", features = ["blocking"] } # "blocking" is simpler for scripts +reqwest = { version = "0.13", features = ["blocking"] } # "blocking" is simpler for scripts serde = { workspace = true } serde_yaml = { workspace = true } tokio = { workspace = true}