-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (42 loc) · 1.75 KB
/
Cargo.toml
File metadata and controls
44 lines (42 loc) · 1.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[workspace]
members = ["geoarrow-compute", "geoarrow-core", "geoarrow-io", "geodatafusion"]
resolver = "2"
[workspace.package]
authors = ["Kyle Barron <kylebarron2@gmail.com>"]
version = "0.5.1"
edition = "2024"
homepage = "https://geoarrow.org/geoarrow-rs/"
repository = "https://github.com/geoarrow/geoarrow-rs"
license = "MIT OR Apache-2.0"
keywords = ["python", "arrow", "geospatial"]
categories = ["wasm", "science::geo"]
rust-version = "1.85"
[workspace.dependencies]
arrow = "56"
arrow-array = "56"
arrow-buffer = "56"
arrow-schema = "56"
datafusion = { git = "https://github.com/apache/datafusion", rev = "fa1f8c192dd531d3f2fca61885eafa3e9002f0dd" }
datafusion-ffi = { git = "https://github.com/apache/datafusion", rev = "fa1f8c192dd531d3f2fca61885eafa3e9002f0dd" }
flatgeobuf = { version = "5.0", default-features = false }
geo-traits = "0.3"
geoarrow-array = { path = "../rust/geoarrow-array" }
geoarrow-cast = { path = "../rust/geoarrow-cast" }
geoarrow-flatgeobuf = { path = "../rust/geoarrow-flatgeobuf" }
geoarrow-schema = { path = "../rust/geoarrow-schema" }
geodatafusion = { path = "../rust/geodatafusion" }
geodatafusion-flatgeobuf = { path = "../rust/geodatafusion-flatgeobuf" }
geoparquet = { path = "../rust/geoparquet" }
geozero = "0.14"
http-range-client = { version = "0.9.0", default-features = false }
indexmap = "2.5.0"
numpy = "0.25"
object_store = "0.12"
parquet = "56"
pyo3 = { version = "0.25", features = ["hashbrown", "serde", "anyhow"] }
pyo3-async-runtimes = { version = "0.25", features = ["tokio-runtime"] }
# https://github.com/kylebarron/arro3/pull/354
pyo3-arrow = { git = "https://github.com/kylebarron/arro3", rev = "fda03cebe9cfbf8ad292f8070ea21c22b32af1a3" }
pyo3-geoarrow = { path = "../rust/pyo3-geoarrow" }
serde_json = "1"
thiserror = "1"