From 5c808747f77a7cc64b0035378620e01e9aa37474 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 25 Mar 2024 02:23:57 +0000 Subject: [PATCH] chore(deps): update reqwest requirement from 0.11 to 0.12 in /stac 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/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stac/Cargo.toml b/stac/Cargo.toml index 3dcd76b7..10b1a05f 100644 --- a/stac/Cargo.toml +++ b/stac/Cargo.toml @@ -19,7 +19,7 @@ schemars = ["dep:schemars"] chrono = "0.4" geo = { version = "0.28", optional = true } geojson = { version = "0.24", optional = true } -reqwest = { version = "0.11", optional = true, features = ["json", "blocking"] } +reqwest = { version = "0.12", optional = true, features = ["json", "blocking"] } schemars = { version = "0.8", optional = true } serde = { version = "1", features = ["derive"] } serde_json = { version = "1", features = ["preserve_order"] }