-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
49 lines (43 loc) · 1.33 KB
/
Cargo.toml
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
[package]
name = "datafusion-geo"
version = "0.1.0"
edition = "2021"
authors = ["lewiszlw <lewiszlw520@gmail.com>"]
description = "Add geo functionality extension to datafusion query engine."
license = "MIT"
repository = "https://github.com/systemxlabs/datafusion-geo"
homepage = "https://github.com/systemxlabs/datafusion-geo"
readme = "README.md"
[features]
geos = ["dep:geos", "geozero/with-geos"]
[dependencies]
arrow-schema = "50"
arrow-array = "50"
arrow-buffer = "50"
datafusion-common = "36"
datafusion-expr = "36"
geo = "0.28"
geos = { version = "8.3", features = ["v3_10_0", "geo"], optional = true }
#geozero = { version = "0.12", features = ["with-wkb"] }
geozero = { git = "https://github.com/georust/geozero.git", rev = "3378dda305ec88cabb092d458f8a61a140f60827", features = ["with-wkb"] }
rayon = "1.9"
rstar = "0.12.0"
[dev-dependencies]
arrow = "50"
datafusion = "36"
tokio = { version = "1.36", features = ["full"] }
criterion = { version = "0.5.1", features = ["async_tokio"] }
geoarrow = { git = "https://github.com/geoarrow/geoarrow-rs.git", rev = "0e4473e546248d2c2cbfb44df76d508660761261" }
[[bench]]
name = "geo_lib"
path = "benches/geo_lib.rs"
harness = false
[[bench]]
name = "geos_lib"
path = "benches/geos_lib.rs"
harness = false
required-features = ["geos"]
[[bench]]
name = "geoarrow"
path = "benches/geoarrow.rs"
harness = false