From 0a91d9f2fa894ae9e368817463bfaca4f8391016 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Feb 2026 09:01:35 +0000 Subject: [PATCH] chore(deps)(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.2) --- updated-dependencies: - dependency-name: reqwest dependency-version: 0.13.2 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- sdks/rust/Cargo.toml | 2 +- synap-cli/Cargo.toml | 2 +- synap-server/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) mode change 100755 => 100644 sdks/rust/Cargo.toml mode change 100755 => 100644 synap-cli/Cargo.toml mode change 100755 => 100644 synap-server/Cargo.toml diff --git a/sdks/rust/Cargo.toml b/sdks/rust/Cargo.toml old mode 100755 new mode 100644 index 2167261..65039b4 --- a/sdks/rust/Cargo.toml +++ b/sdks/rust/Cargo.toml @@ -13,7 +13,7 @@ categories = ["database", "network-programming", "asynchronous"] [dependencies] tokio = { version = "1.48", features = ["full"] } tokio-stream = { version = "0.1", features = ["sync"] } -reqwest = { version = "0.12", features = ["json", "stream"] } +reqwest = { version = "0.13", features = ["json", "stream"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" thiserror = "2.0" diff --git a/synap-cli/Cargo.toml b/synap-cli/Cargo.toml old mode 100755 new mode 100644 index 767fe8d..1fcb73d --- a/synap-cli/Cargo.toml +++ b/synap-cli/Cargo.toml @@ -17,7 +17,7 @@ serde.workspace = true serde_json.workspace = true anyhow.workspace = true clap = { version = "4.5", features = ["derive"] } -reqwest = { version = "0.12", features = ["json"] } +reqwest = { version = "0.13", features = ["json"] } rustyline = "17.0" colored = "2.1" uuid = { version = "1.6", features = ["v4"] } diff --git a/synap-server/Cargo.toml b/synap-server/Cargo.toml old mode 100755 new mode 100644 index c51ec29..bb898ab --- a/synap-server/Cargo.toml +++ b/synap-server/Cargo.toml @@ -68,7 +68,7 @@ bench = [] [dev-dependencies] criterion = { version = "0.7", features = ["async_tokio"] } -reqwest = { version = "0.12", features = ["json"] } +reqwest = { version = "0.13", features = ["json"] } tokio-test = "0.4" tokio-tungstenite = { version = "0.28", features = ["native-tls"] }