spatial-join 0.1.0

Spatial join tools
Documentation
[package]
name = "spatial-join"
version = "0.1.0"
authors = ["Michael Salib <msalib@alum.mit.edu>"]
repository = "https://github/msalib/spatial-join"
edition = "2018"
license = "Apache-2.0"
documentation = "https://docs.rs/spatial-join/"
readme = "README.md"
keywords = ["gis", "geo", "geography", "geospatial", "spatial-join"]
description = "Spatial join tools"

[dependencies]
geo = "0.14.0"
rstar = "0.8.1"
thiserror = "1.0.20"
smallvec = "1.4.0"
lazy_static = "1.4.0"
rayon = { version = "1.3.1", optional = true }
num_cpus = { version = "1.13.0", optional = true }


[features]
default = ["parallel"]
parallel = ["rayon", "num_cpus"]

[dev-dependencies]
proptest = "0.10.0"
pretty_assertions = "0.6.1"
criterion = "0.3"
approx = "0.3.2"
# This is a specially patched wkt to support the latest version of
# geo-types, which we rely on for tests and benchmarks.
wkt = {path = "/home/msalib/os/wkt"}

[dev-dependencies.geos]
version = "5.0.0"
features = ["geo"]


[[bench]]
name = "spatial_join"
harness = false