kdtree-rust/Cargo.toml

24 lines
504 B
TOML
Raw Normal View History

2016-12-23 14:11:08 +04:00
[package]
name = "fux_kdtree"
2016-12-29 04:51:02 +04:00
version = "0.1.1"
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"
description = "K-dimensional tree implemented in Rust for fast NN querying."
2016-12-23 14:11:08 +04:00
2016-12-26 17:47:59 +04:00
[lib]
name = "kdtree"
path = "src//lib.rs"
bench = false
[[bench]]
name = "bench"
harness = false
2016-12-23 14:11:08 +04:00
[dev-dependencies]
2016-12-29 05:07:36 +04:00
quickcheck = "~0.3"
rand = "~0.3.12"
bencher = "~0.1.2"