mirror of
https://github.com/andreytkachenko/kdtree-rust.git
synced 2024-11-22 01:16:25 +04:00
20 lines
278 B
TOML
20 lines
278 B
TOML
[package]
|
|
name = "kdtree_rust"
|
|
version = "0.1.0"
|
|
authors = ["Aleksander Fular <ntszar@gmail.com>"]
|
|
|
|
[lib]
|
|
name = "kdtree"
|
|
path = "src//lib.rs"
|
|
bench = false
|
|
|
|
[[bench]]
|
|
name = "bench"
|
|
harness = false
|
|
|
|
[dependencies]
|
|
rand = "*"
|
|
bencher = "*"
|
|
|
|
[dev-dependencies]
|
|
quickcheck = "0.3" |