geozero 0.8.0

Zero-Copy reading and writing of geospatial data.
[[test]]
name = "gdal"
path = "tests/gdal.rs"
required-features = ["with-gdal"]

[[test]]
name = "geojson"
path = "tests/geojson.rs"
required-features = ["with-geojson"]

[[test]]
name = "geopackage"
path = "tests/geopackage.rs"
required-features = ["with-gpkg", "with-wkt", "with-geo"]

[[test]]
name = "geos"
path = "tests/geos.rs"
required-features = ["with-geos"]

[[test]]
name = "geo_types"
path = "tests/geo_types.rs"
required-features = ["with-geo", "with-geojson"]

[[test]]
name = "geozero-api"
path = "tests/geozero-api.rs"
required-features = []

[[test]]
name = "kdbush"
path = "tests/kdbush.rs"
required-features = ["with-geojson"]

[[test]]
name = "polylabel"
path = "tests/polylabel.rs"
required-features = ["with-geo"]

[[test]]
name = "postgis"
path = "tests/postgis.rs"
required-features = ["with-wkb", "with-wkt", "with-geo"]

[[test]]
name = "svg"
path = "tests/svg.rs"
required-features = ["with-svg"]
[dependencies.bytes]
optional = true
version = "1.0"

[dependencies.gdal]
default-features = false
optional = true
version = "0.11"

[dependencies.gdal-sys]
optional = true
version = "0.5"

[dependencies.geo-types]
default-features = false
optional = true
version = "0.7"

[dependencies.geojson]
optional = true
version = "0.22"

[dependencies.geos]
optional = true
version = "8.0"

[dependencies.lyon]
optional = true
version = "0.16"

[dependencies.postgres-types]
optional = true
version = "0.2"

[dependencies.scroll]
optional = true
version = "0.10"

[dependencies.serde_json]
version = "1.0.68"

[dependencies.sqlx]
default-features = false
optional = true
version = "0.5"

[dependencies.thiserror]
version = "1.0"
[dev-dependencies.flatgeobuf]
version = "0.5.0"

[dev-dependencies.geo]
version = "0.17"

[dev-dependencies.hex]
version = "0.4"

[dev-dependencies.kdbush]
version = "0.2"

[dev-dependencies.polylabel]
version = "2.4"

[dev-dependencies.postgres]
version = "0.19"

[dev-dependencies.seek_bufread]
version = "1.2"

[dev-dependencies.sqlx]
default-features = false
features = ["runtime-tokio-native-tls", "macros", "time", "postgres", "sqlite"]
version = "0.5"

[dev-dependencies.tokio]
default-features = false
features = ["rt-multi-thread"]
version = "1.2.0"

[dev-dependencies.wkt]
version = "0.9"

[features]
default = ["with-svg", "with-wkt", "with-geo", "with-geojson"]
with-gdal = ["gdal", "gdal-sys"]
with-geo = ["geo-types"]
with-geojson = ["geojson"]
with-geos = ["geos"]
with-gpkg = ["with-wkb", "sqlx/sqlite"]
with-postgis-postgres = ["with-wkb", "postgres-types", "bytes"]
with-postgis-sqlx = ["with-wkb", "sqlx/postgres"]
with-svg = []
with-tessellator = ["lyon"]
with-wkb = ["scroll", "with-wkt"]
with-wkt = []

[package]
authors = ["Pirmin Kalberer <pka@sourcepole.ch>"]
description = "Zero-Copy reading and writing of geospatial data."
edition = "2018"
homepage = "https://github.com/georust/geozero"
keywords = ["geo", "geojson", "gdal", "geos", "postgis"]
license = "MIT/Apache-2.0"
name = "geozero"
readme = "../README.md"
repository = "https://github.com/georust/geozero"
version = "0.8.0"
[package.metadata.docs.rs]
all-features = true
rustc-args = ["--cfg", "docsrs"]