From fa38da1345d7d0f265fff1509a9a511ffdc38ee9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20Dr=C3=B6nner?= Date: Thu, 24 Aug 2023 15:33:25 +0200 Subject: [PATCH 1/2] update gdal-sys to 0.9.1 --- gdal-sys/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gdal-sys/Cargo.toml b/gdal-sys/Cargo.toml index 9e0eab0b7..c59b15875 100644 --- a/gdal-sys/Cargo.toml +++ b/gdal-sys/Cargo.toml @@ -2,11 +2,11 @@ name = "gdal-sys" description = "Low level GDAL bindings for Rust" license = "MIT" -version = "0.9.0" +version = "0.9.1" repository = "https://github.com/georust/gdal" authors = ["Johannes Drönner "] categories = ["science::geo", "api-bindings"] -edition = "2018" +edition = "2021" rust-version = "1.58" links="gdal" From 949c561c08f378fe75777aa0fc90292bbec081be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20Dr=C3=B6nner?= Date: Thu, 24 Aug 2023 15:39:00 +0200 Subject: [PATCH 2/2] bump dependencies --- Cargo.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 5034a62c9..69c107149 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,18 +20,18 @@ array = ["ndarray"] [dependencies] thiserror = "1.0" libc = "0.2" -geo-types = { version = "0.7.8" } +geo-types = { version = "0.7.11" } gdal-sys = { path = "gdal-sys", version = "^0.9" } ndarray = { version = "0.15", optional = true } -chrono = { version = "0.4.23", default-features = false } -bitflags = "2.2" -once_cell = "1.9" +chrono = { version = "0.4.26", default-features = false } +bitflags = "2.4" +once_cell = "1.18" [build-dependencies] semver = "1.0" [dev-dependencies] -tempfile = "3.3" +tempfile = "3.8" # Only used in the example arrow2 = "0.17"