[package]
edition = "2021"
name = "a5"
version = "0.7.2"
authors = ["Felix Palmer <felixpalmer@gmail.com>"]
build = false
include = [
"src/**/*",
"LICENSE",
"README.md",
"Cargo.toml",
"Cargo.lock",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance Rust implementation of the A5 hierarchical spatial indexing system"
homepage = "https://github.com/felixpalmer/a5-rs"
documentation = "https://docs.rs/a5"
readme = "README.md"
keywords = [
"geospatial",
"indexing",
"hierarchical",
"spatial",
"gis",
]
categories = [
"algorithms",
"data-structures",
"science::geo",
]
license = "Apache-2.0"
repository = "https://github.com/felixpalmer/a5-rs"
[lib]
name = "a5"
path = "src/lib.rs"
[dependencies.lazy_static]
version = "1.4"
[dev-dependencies.approx]
version = "0.5.1"
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.serde]
version = "1.0"
features = ["derive"]
[dev-dependencies.serde_json]
version = "1.0"
[dev-dependencies.tempfile]
version = "3.0"