nabo 0.6.0

A fast K Nearest Neighbor (KNN) library for low-dimensional spaces
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 = "2021"
rust-version = "1.63"
name = "nabo"
version = "0.6.0"
authors = [
    "Stéphane Magnenat <stephane.magnenat@enlightware.ch>",
    "Hannes Sommer <hannes.sommer@enlightware.ch>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A fast K Nearest Neighbor (KNN) library for low-dimensional spaces"
homepage = "https://github.com/enlightware/nabo-rs"
readme = "README.md"
keywords = [
    "nearest_neighbor",
    "K-D_tree",
    "data_structures",
    "KNN",
    "no_std",
]
categories = [
    "mathematics",
    "science",
    "computer-vision",
    "multimedia",
    "game-development",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/enlightware/nabo-rs"

[features]
default = ["rand"]
rand = ["dep:rand"]

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

[[bench]]
name = "candidate_container_comparison"
path = "benches/candidate_container_comparison.rs"
harness = false
required-features = ["rand"]

[[bench]]
name = "simple"
path = "benches/simple.rs"
harness = false
required-features = ["rand"]

[dependencies.num-traits]
version = "0.2"
features = ["libm"]
default-features = false

[dependencies.ordered-float]
version = "4.6"
features = ["libm"]
default-features = false

[dependencies.partition]
version = "0.1.2"

[dependencies.rand]
version = "0.10.1"
optional = true

[dev-dependencies.criterion]
version = "0.5"

[dev-dependencies.float-cmp]
version = "0.10"

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

[profile.release]
debug = 1