2016-12-23 14:11:08 +04:00
|
|
|
[package]
|
2016-12-29 04:44:18 +04:00
|
|
|
name = "fux_kdtree"
|
2020-04-28 22:35:14 +04:00
|
|
|
version = "0.3.0"
|
2016-12-29 04:44:18 +04:00
|
|
|
authors = ["fulara <ntszar@gmail.com>"]
|
2016-12-29 04:59:24 +04:00
|
|
|
repository = "https://github.com/fulara/kdtree-rust"
|
2016-12-29 05:04:02 +04:00
|
|
|
keywords = ["tree", "dimension" , "nearest", "search", "neighbor"]
|
2016-12-29 04:59:24 +04:00
|
|
|
readme = "README.md"
|
|
|
|
license = "Unlicense"
|
2016-12-29 04:44:18 +04:00
|
|
|
description = "K-dimensional tree implemented in Rust for fast NN querying."
|
2020-04-28 21:32:07 +04:00
|
|
|
edition = "2018"
|
2016-12-23 14:11:08 +04:00
|
|
|
|
2016-12-26 17:47:59 +04:00
|
|
|
[lib]
|
|
|
|
name = "kdtree"
|
2020-04-28 21:32:07 +04:00
|
|
|
path = "src/lib.rs"
|
2016-12-26 17:47:59 +04:00
|
|
|
bench = false
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "bench"
|
|
|
|
harness = false
|
|
|
|
|
2016-12-23 14:11:08 +04:00
|
|
|
[dev-dependencies]
|
2020-04-28 21:32:07 +04:00
|
|
|
quickcheck = "~0.9"
|
|
|
|
rand = "~0.7"
|
|
|
|
bencher = "~0.1"
|
2020-04-28 22:33:03 +04:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
num-traits = "0.2"
|