forked from geopolars/geoarrow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (31 loc) · 846 Bytes
/
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
[package]
name = "geoarrow"
version = "0.0.1"
authors = ["Kyle Barron <[email protected]>"]
edition = "2021"
license = "MIT"
repository = "https://github.com/geopolars/geoarrow"
description = "Rust implementation of GeoArrow"
[dependencies]
geo = "0.23"
geos = { version = "8", features = ["v3_8_0", "geo"], optional = true }
thiserror = "1"
anyhow = "1"
geozero = { version = "0.9.4", features = ["with-wkb"] }
arrow2 = { version = "0.17" }
# TODO: properly feature gate this
rstar = { version = "0.9.3" }
[dev-dependencies]
arrow2 = { version = "0.17", features = [
"io_parquet",
"io_parquet_compression",
] }
criterion = { version = "0.4", features = ["html_reports"] }
[lib]
# TODO: fix docstrings
doctest = false
# see: https://bheisler.github.io/criterion.rs/book/faq.html
bench = false
[[bench]]
name = "rtree"
harness = false