[package] name = "nabo-pbc" version = "0.2.1" edition = "2018" authors = ["Cavey Cool "] license = "MIT OR Apache-2.0" description = "A fast K Nearest Neighbor (KNN) library for low-dimensional spaces, now with support for periodic boundary conditions." readme = "README.md" keywords = ["NNS", "nearest_neighbor", "K-D_tree", "data_structures", "KNN"] categories = ["mathematics", "science", "computer-vision", "multimedia", "game-development"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] default = ["dummy_point"] dummy_point = ["rand"] [dependencies] partition = "0.1.2" num-traits = "0.2" ordered-float = "2.7.0" rand = { version = "0.8", optional = true } [dev-dependencies] rand = "0.8" float-cmp = "0.9" criterion = "0.3" rayon = "1.5.3" [profile.release] lto = true codegen-units = 1 [[bench]] name = "candidate_container_comparison" harness = false required-features = ["dummy_point"] [[bench]] name = "simple" harness = false required-features = ["dummy_point"] [[bench]] name = "simple_periodic" harness = false required-features = ["dummy_point"] [[bench]] name = "periodic" harness = false