mirror of
https://github.com/andreytkachenko/kdtree-rust.git
synced 2024-11-22 01:16:25 +04:00
20 lines
329 B
TOML
20 lines
329 B
TOML
[package]
|
|
name = "fux_kdtree"
|
|
version = "0.1.1"
|
|
authors = ["fulara <ntszar@gmail.com>"]
|
|
description = "K-dimensional tree implemented in Rust for fast NN querying."
|
|
|
|
[lib]
|
|
name = "kdtree"
|
|
path = "src//lib.rs"
|
|
bench = false
|
|
|
|
[[bench]]
|
|
name = "bench"
|
|
harness = false
|
|
|
|
[dev-dependencies]
|
|
quickcheck = "0.3"
|
|
rand = "*"
|
|
bencher = "*"
|