kdtree-rust/Cargo.toml

19 lines
328 B
TOML
Raw Normal View History

2016-12-23 14:11:08 +04:00
[package]
name = "fux_kdtree"
2016-12-23 14:11:08 +04:00
version = "0.1.0"
authors = ["fulara <ntszar@gmail.com>"]
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]
quickcheck = "0.3"
rand = "*"
bencher = "*"