From 012f243f927278250734495413bb71b090ab1552 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Nov 2023 02:58:41 +0000 Subject: [PATCH] chore(deps): update geo requirement from 0.26 to 0.27 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.26.0...geo-0.27.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 e2007a50..19e7ff91 100644 --- a/stac/Cargo.toml +++ b/stac/Cargo.toml @@ -17,7 +17,7 @@ schemars = ["dep:schemars"] [dependencies] chrono = "0.4" -geo = { version = "0.26", optional = true } +geo = { version = "0.27", optional = true } geojson = { version = "0.24", optional = true } reqwest = { version = "0.11", optional = true, features = ["json", "blocking"] } schemars = { version = "0.8", optional = true }