From 5c2c7e4e2762f4428e7774afb1b425415feec94e Mon Sep 17 00:00:00 2001 From: Rui Hu Date: Tue, 24 Dec 2019 00:22:55 -0800 Subject: [PATCH] Add kdtree-rs --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index d4d6068..7ff1332 100644 --- a/README.md +++ b/README.md @@ -890,6 +890,7 @@ See also [About Rust’s Machine Learning Community](https://medium.com/@autumn_ * [danielpclark/array_tool](https://github.com/danielpclark/array_tool) — Array helpers for Rust. Some of the most common methods you would use on Arrays made available on Vectors. Polymorphic implementations for handling most of your use cases. [](https://travis-ci.org/danielpclark/array_tool) * [fizyk20/generic-array](https://github.com/fizyk20/generic-array) – a hack to allow for arrays sized by typenums [](https://travis-ci.org/fizyk20/generic-array) * [garro95/priority-queue](https://github.com/garro95/priority-queue)[[priority-queue](https://crates.io/crates/priority-queue)] — A priority queue that implements priority changes. [](https://travis-ci.org/garro95/priority-queue) +* [mrhooray/kdtree-rs](https://github.com/mrhooray/kdtree-rs) - K-dimensional tree in Rust for fast geospatial indexing and nearest neighbors lookup * [Nemo157/roaring-rs](https://github.com/Nemo157/roaring-rs) – Roaring Bitmaps in Rust [](https://travis-ci.org/Nemo157/roaring-rs) * [orium/rpds](https://github.com/orium/rpds) [[rpds](https://crates.io/crates/rpds)] — Persistent data structures in Rust. [](https://travis-ci.org/orium/rpds) * [pop-os/progress-streams](https://github.com/pop-os/progress-streams) — Progress callbacks for types which implement `dyn io::Read` or `dyn io::Write`.