[package]
edition = "2021"
name = "rapidgeo-polyline"
version = "0.1.2"
authors = ["gaker"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast Google Polyline Algorithm encoding/decoding for geographic coordinates"
homepage = "https://github.com/gaker/rapidgeo"
documentation = "https://docs.rs/rapidgeo-polyline"
readme = "README.md"
keywords = [
"polyline",
"encoding",
"google",
"maps",
"geometry",
]
categories = [
"science::geo",
"encoding",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/gaker/rapidgeo"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
batch = ["rayon"]
default = []
numpy = []
[lib]
name = "rapidgeo_polyline"
path = "src/lib.rs"
[[test]]
name = "security_tests"
path = "tests/security_tests.rs"
[[bench]]
name = "performance_benchmarks"
path = "benches/performance_benchmarks.rs"
harness = false
[[bench]]
name = "polyline_benchmarks"
path = "benches/polyline_benchmarks.rs"
[dependencies.rapidgeo-distance]
version = "0.2"
[dependencies.rapidgeo-simplify]
version = "0.1"
[dependencies.rayon]
version = "1.11"
optional = true
[dev-dependencies.criterion]
version = "0.7"
features = [
"html_reports",
"html_reports",
]
[dev-dependencies.fastrand]
version = "2.0"