From 1d715605b0397cd01b2225c0654d5d3d5974fa41 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 26 Feb 2024 02:47:23 +0000 Subject: [PATCH] chore(deps): update geo requirement from 0.27 to 0.28 in /stac Updates the requirements on [geo](https://github.com/georust/geo) to permit the latest version. - [Changelog](https://github.com/georust/geo/blob/main/CHANGES.md) - [Commits](https://github.com/georust/geo/compare/geo-0.27.0...geo-0.28.0) --- updated-dependencies: - dependency-name: geo 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 19e7ff91..3dcd76b7 100644 --- a/stac/Cargo.toml +++ b/stac/Cargo.toml @@ -17,7 +17,7 @@ schemars = ["dep:schemars"] [dependencies] chrono = "0.4" -geo = { version = "0.27", optional = true } +geo = { version = "0.28", optional = true } geojson = { version = "0.24", optional = true } reqwest = { version = "0.11", optional = true, features = ["json", "blocking"] } schemars = { version = "0.8", optional = true }