-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (47 loc) · 1.3 KB
/
Cargo.toml
File metadata and controls
49 lines (47 loc) · 1.3 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
45
46
47
48
49
[workspace]
members = [
"rust/geodatafusion-flatgeobuf",
"rust/geodatafusion-geojson",
"rust/geodatafusion-geoparquet",
"rust/geodatafusion",
]
exclude = ["python"]
resolver = "2"
[workspace.package]
version = "0.4.0"
authors = ["Kyle Barron <kylebarron2@gmail.com>"]
edition = "2024"
license = "MIT OR Apache-2.0"
repository = "https://github.com/datafusion-contrib/geodatafusion"
rust-version = "1.88"
categories = ["science::geo"]
[workspace.dependencies]
approx = "0.5.1"
arrow-arith = "58.1"
arrow-array = "58.1"
arrow-schema = "58.1"
async-trait = "0.1"
datafusion = { version = "53", default-features = false }
datafusion-datasource = { version = "53", default-features = false }
datafusion-datasource-parquet = "53"
flatgeobuf = { version = "5.0", default-features = false }
futures = "0.3"
geo = "0.31.0"
geo-traits = "0.3.0"
geoarrow-array = "0.8.0"
geoarrow-flatgeobuf = "0.8.0"
geoarrow-expr-geo = "0.8.0"
geoarrow-geojson = "0.8.0"
geoarrow-schema = "0.8.0"
geodatafusion = { path = "rust/geodatafusion", version = "0.4.0" }
geohash = "0.13.1"
geojson = "0.24"
geoparquet = "0.8.0"
http-range-client = { version = "0.9", default-features = false }
object_store = "0.13.2"
serde_json = "1"
tempfile = "3"
thiserror = "1"
tokio = { version = "1.9", default-features = false }
wkb = "0.9"
wkt = "0.14"