From 1f2e384ce3e0f5014692f71b066dcd75ed2c29bc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Dec 2024 20:16:58 +0000 Subject: [PATCH] chore(deps): update reqwest requirement from 0.11.18 to 0.12.9 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.11.18...v0.12.9) --- updated-dependencies: - dependency-name: reqwest dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- xp-bot/Cargo.toml | 2 +- xp-db-connector/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/xp-bot/Cargo.toml b/xp-bot/Cargo.toml index cd02416..97f1e0a 100644 --- a/xp-bot/Cargo.toml +++ b/xp-bot/Cargo.toml @@ -12,7 +12,7 @@ dotenv = "0.15.0" env_logger = "0.11.2" libmath = "0.2.1" log = "0.4.19" -reqwest = "0.11.18" +reqwest = "0.12.9" round = "0.1.2" serde = "1.0.181" serenity = { version = "0.11.6", features = [ diff --git a/xp-db-connector/Cargo.toml b/xp-db-connector/Cargo.toml index 27d1ec9..3c5e825 100644 --- a/xp-db-connector/Cargo.toml +++ b/xp-db-connector/Cargo.toml @@ -6,6 +6,6 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -reqwest = { version = "0.11.18", features = ["rustls", "rustls-tls", "serde_json", "tokio-rustls", "async-compression", "brotli", "deflate", "gzip"] } +reqwest = { version = "0.12.9", features = ["rustls", "rustls-tls", "serde_json", "tokio-rustls", "async-compression", "brotli", "deflate", "gzip"] } serde = { version = "1.0.180", features = ["serde_derive"] } serde_json = "1.0.104"