kdtree 0.8.0

K-dimensional tree in Rust for fast geospatial indexing and nearest neighbors lookup
Documentation
[[bench]]
harness = false
name = "bench"
path = "benches/bench.rs"

[dependencies.criterion]
version = "0.7"

[dependencies.num-traits]
version = "0.2"

[dependencies.serde]
optional = true
version = "1.0"

[dependencies.serde_derive]
optional = true
version = "1.0"

[dependencies.thiserror]
version = "2.0"

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

[dev-dependencies.serde]
version = "1.0"

[dev-dependencies.serde_json]
version = "1.0"

[features]
serialize = ["serde", "serde_derive"]

[lib]
name = "kdtree"
path = "src/lib.rs"

[package]
authors = ["Rui Hu <code@mrhooray.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "K-dimensional tree in Rust for fast geospatial indexing and nearest neighbors lookup"
documentation = "https://docs.rs/kdtree"
edition = "2024"
keywords = ["tree", "nearest", "neighbor", "search", "geo"]
license = "MIT OR Apache-2.0"
name = "kdtree"
readme = "README.md"
repository = "https://github.com/mrhooray/kdtree-rs"
version = "0.8.0"

[[test]]
name = "count_dist"
path = "tests/count_dist.rs"

[[test]]
name = "kdtree"
path = "tests/kdtree.rs"

[[test]]
name = "serialization"
path = "tests/serialization.rs"