diff --git a/.github/workflows/r.yml b/.github/workflows/r.yml index 151809b78..7e8b03137 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 dda9d836a..e1b01ebfb 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 11378dc95..82ecd7967 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" }