From 44fcdf3e3ad25d0d802cf8be73e6f5e8ac4ec431 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 25 Mar 2024 02:08:44 +0000 Subject: [PATCH] chore(deps): update reqwest requirement from 0.11 to 0.12 in /stac-async 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] --- stac-async/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stac-async/Cargo.toml b/stac-async/Cargo.toml index 81ad7100..f49e6c1c 100644 --- a/stac-async/Cargo.toml +++ b/stac-async/Cargo.toml @@ -15,7 +15,7 @@ async-stream = "0.3" futures-core = "0.3" futures-util = "0.3" http = "0.2" -reqwest = { version = "0.11", features = ["json"] } +reqwest = { version = "0.12", features = ["json"] } serde = "1" serde_json = "1" stac = { version = "0.5", path = "../stac" }