diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2025-02-18 09:56:13 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2025-02-18 09:56:13 -0500 |
commit | d173617ee23b179ed7e9926d124eaa41b855e071 (patch) | |
tree | 474663e68a3e4b33230556679fddba6240ef698c /src/forest.rs | |
parent | c404a0a02915e4f6d329d7667ed30b8519b8a964 (diff) | |
download | kd-forest-d173617ee23b179ed7e9926d124eaa41b855e071.tar.xz |
Update deps
Diffstat (limited to 'src/forest.rs')
-rw-r--r-- | src/forest.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/forest.rs b/src/forest.rs index 4feffcb..be31cb0 100644 --- a/src/forest.rs +++ b/src/forest.rs @@ -238,7 +238,7 @@ mod tests { use acap::exhaustive::ExhaustiveSearch; use acap::knn::{NearestNeighbors, Neighbor}; - use rand::prelude::*; + use rand::random; type Point = Euclidean<[f32; 3]>; |