From 1b3dfa803961b928733c5372959214298e4028ea Mon Sep 17 00:00:00 2001 From: sharkinsspatial Date: Mon, 20 Apr 2026 11:46:01 -0400 Subject: [PATCH] Include geo crates in python Cargo.lock. --- python/Cargo.lock | 38 ++++++++++++++++++++++++++++++++------ 1 file changed, 32 insertions(+), 6 deletions(-) diff --git a/python/Cargo.lock b/python/Cargo.lock index 6ab2012..aa0c593 100644 --- a/python/Cargo.lock +++ b/python/Cargo.lock @@ -2658,6 +2658,29 @@ dependencies = [ "spade", ] +[[package]] +name = "geo-index" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e6b2a121e60180a118037426b1e93d7f5904ebd95cf6e841a575195a65a31ce" +dependencies = [ + "bytemuck", + "float_next_after", + "geo-traits 0.2.0", + "num-traits", + "thiserror 1.0.69", + "tinyvec", +] + +[[package]] +name = "geo-traits" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b018fc19fa58202b03f1c809aebe654f7d70fd3887dace34c3d05c11aeb474b5" +dependencies = [ + "geo-types", +] + [[package]] name = "geo-traits" version = "0.3.0" @@ -2689,7 +2712,7 @@ dependencies = [ "arrow-array", "arrow-buffer", "arrow-schema", - "geo-traits", + "geo-traits 0.3.0", "geoarrow-schema", "num-traits", "wkb", @@ -2705,7 +2728,7 @@ dependencies = [ "arrow-array", "arrow-buffer", "geo", - "geo-traits", + "geo-traits 0.3.0", "geoarrow-array", "geoarrow-schema", ] @@ -2717,7 +2740,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e97be4e9f523f92bd6a0e0458323f4b783d073d011664decd8dbf05651704f34" dependencies = [ "arrow-schema", - "geo-traits", + "geo-traits 0.3.0", "serde", "serde_json", "thiserror 1.0.69", @@ -2734,7 +2757,7 @@ dependencies = [ "arrow-schema", "datafusion", "geo", - "geo-traits", + "geo-traits 0.3.0", "geoarrow-array", "geoarrow-expr-geo", "geoarrow-schema", @@ -6489,7 +6512,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a120b336c7ad17749026d50427c23d838ecb50cd64aaea6254b5030152f890a9" dependencies = [ "byteorder", - "geo-traits", + "geo-traits 0.3.0", "num_enum", "thiserror 1.0.69", ] @@ -6500,7 +6523,7 @@ version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "efb2b923ccc882312e559ffaa832a055ba9d1ac0cc8e86b3e25453247e4b81d7" dependencies = [ - "geo-traits", + "geo-traits 0.3.0", "geo-types", "log", "num-traits", @@ -6552,12 +6575,15 @@ dependencies = [ "async-trait", "datafusion", "futures", + "geo-index", + "geo-traits 0.3.0", "geoarrow-schema", "geodatafusion", "icechunk", "object_store 0.12.5", "thiserror 2.0.18", "tokio", + "wkt", "zarrs", "zarrs_filesystem", "zarrs_icechunk",