Skip to content

Commit

Permalink
Bump geo
Browse files Browse the repository at this point in the history
  • Loading branch information
kylebarron committed Nov 21, 2023
1 parent cc0ce9a commit a4df2f7
Show file tree
Hide file tree
Showing 6 changed files with 64 additions and 31 deletions.
30 changes: 21 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ bumpalo = { version = "3", features = ["collections"] }
byteorder = "1"
# Set default-features = false because async not working in wasm right now
flatgeobuf = { version = "3.27.0", optional = true, default-features = false }
gdal = { version = "0.15", optional = true }
geo = "0.26"
gdal = { version = "0.16", optional = true }
geo = "0.27"
geodesy = { version = "0.11", optional = true }
geos = { version = "8.3", features = ["v3_10_0", "geo"], optional = true }
geozero = { version = "0.11", features = ["with-wkb"], optional = true }
itertools = "0.11"
itertools = "0.12"
num_enum = "0.7"
proj = { version = "0.27.2", optional = true, features = [
"pkg_config",
Expand Down
26 changes: 19 additions & 7 deletions js/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion js/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ console_error_panic_hook = { version = "0.1.6", optional = true }

geoarrow = { path = "../", package = "geoarrow2" }
thiserror = "1"
geo = "0.26"
geo = "0.27"
geodesy = { version = "0.11", optional = true, features = ["js"] }

# Pass "wasm" and "thin" down to the transitive zstd dependency
Expand Down
26 changes: 19 additions & 7 deletions python/geoarrow-rust/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 1 addition & 4 deletions python/geoarrow-rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,6 @@ name = "rust"
crate-type = ["cdylib"]

[dependencies]
# arrow-array = "48"
# arrow-buffer = "48"
# arrow = "48"
arrow-array = { git = "https://github.com/apache/arrow-rs", rev="fbbb61d94282165f9bb9f73fb4d00a3af16d4aee" }
arrow-buffer = { git = "https://github.com/apache/arrow-rs", rev="fbbb61d94282165f9bb9f73fb4d00a3af16d4aee" }
arrow = { git = "https://github.com/apache/arrow-rs", rev="fbbb61d94282165f9bb9f73fb4d00a3af16d4aee", features = ["ffi"] }
Expand All @@ -32,4 +29,4 @@ pyo3 = { version = "0.20.0", features = [
] }
geoarrow = { path = "../../", package = "geoarrow2" }
thiserror = "1"
geo = "0.26"
geo = "0.27"

0 comments on commit a4df2f7

Please sign in to comment.