This is an automated email from the ASF dual-hosted git repository.
fengzhang pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/sedona-db.git
The following commit(s) were added to refs/heads/main by this push:
new 31656420 chore: Update wkb crate dependency to v0.9.2 (#329)
31656420 is described below
commit 316564203ebc915b3280d2515e844a51c5a8f4f6
Author: Feng Zhang <[email protected]>
AuthorDate: Sat Nov 22 22:26:11 2025 -0700
chore: Update wkb crate dependency to v0.9.2 (#329)
---
.github/workflows/r.yml | 1 +
Cargo.lock | 5 +++--
Cargo.toml | 5 ++---
3 files changed, 6 insertions(+), 5 deletions(-)
diff --git a/.github/workflows/r.yml b/.github/workflows/r.yml
index 151809b7..7e8b0313 100644
--- a/.github/workflows/r.yml
+++ b/.github/workflows/r.yml
@@ -103,6 +103,7 @@ jobs:
with:
needs: check
working-directory: r/sedonadb
+ cache: false
- name: Install R Package
run: |
diff --git a/Cargo.lock b/Cargo.lock
index dda9d836..e1b01ebf 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -6527,8 +6527,9 @@ checksum =
"f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
[[package]]
name = "wkb"
-version = "0.9.1"
-source =
"git+https://github.com/georust/wkb.git?rev=3158e6295e4a39dc7fd75f3cfebee113c8b844d0#3158e6295e4a39dc7fd75f3cfebee113c8b844d0"
+version = "0.9.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a120b336c7ad17749026d50427c23d838ecb50cd64aaea6254b5030152f890a9"
dependencies = [
"byteorder",
"geo-traits",
diff --git a/Cargo.toml b/Cargo.toml
index 11378dc9..82ecd796 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -104,7 +104,7 @@ geo = "0.31.0"
geo-index = { version = "0.3.1" }
-wkb = "0.9.1"
+wkb = "0.9.2"
wkt = "0.14.0"
parking_lot = "0.12"
@@ -150,6 +150,5 @@ sedona-s2geography = { version = "0.2.0", path =
"c/sedona-s2geography" }
sedona-tg = { version = "0.2.0", path = "c/sedona-tg" }
[patch.crates-io]
-# TODO: remove them once changes we made to geo-index and wkb crates are
merged to upstream and released
+# TODO: remove this once changes we made to the geo-index crate are merged to
upstream and released
geo-index = { git = "https://github.com/wherobots/geo-index.git", branch =
"main" }
-wkb = { git = "https://github.com/georust/wkb.git", rev =
"3158e6295e4a39dc7fd75f3cfebee113c8b844d0" }