kdtree 0.8.1

K-dimensional tree in Rust for fast geospatial indexing and nearest neighbors lookup
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

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

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

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

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

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

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

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

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

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

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

[[bench]]
name = "bench"
path = "benches/bench.rs"
harness = false

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

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

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

[dependencies.thiserror]
version = "2.0"

[dev-dependencies.criterion]
version = "0.8"
default-features = false

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

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

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