From 9f3315840e7130149104df7012599c148f14d3fb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 25 Mar 2024 15:48:44 +0100 Subject: [PATCH] chore: update reqwest requirement from 0.11 to 0.12 (#78) * chore: update reqwest requirement from 0.11 to 0.12 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.0...v0.12.1) --- updated-dependencies: - dependency-name: reqwest dependency-type: direct:production ... Signed-off-by: dependabot[bot] * fix: enable json feature --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Oliver Nordbjerg --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index a1bb6cd..ff01f84 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,7 +24,7 @@ uuid = "1.5" # HTTP url = { version = "2.3.1", default-features = false } -reqwest = { version = "0.11", default-features = false } +reqwest = { version = "0.12", features = ["json"], default-features = false } # Async async-trait = { version = "0.1.58", default-features = false }