summaryrefslogtreecommitdiffstats
path: root/src/exhaustive.rs
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2021-10-21 14:01:21 -0400
committerTavian Barnes <tavianator@tavianator.com>2021-10-24 10:51:11 -0400
commitd64807aab65a4e25012c639b28d5ac60e24dac32 (patch)
tree4096be26b0b56331d477109b3a7a791d5f6aed6a /src/exhaustive.rs
parentbf2a10ca3b54ac3ed3dcc9c25cb1cf7f07ba8135 (diff)
downloadacap-d64807aab65a4e25012c639b28d5ac60e24dac32.tar.xz
Bump the edition to 2021
Diffstat (limited to 'src/exhaustive.rs')
-rw-r--r--src/exhaustive.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/exhaustive.rs b/src/exhaustive.rs
index 3f42876..7b63ef7 100644
--- a/src/exhaustive.rs
+++ b/src/exhaustive.rs
@@ -3,8 +3,6 @@
use crate::distance::Proximity;
use crate::knn::{ExactNeighbors, NearestNeighbors, Neighborhood};
-use std::iter::FromIterator;
-
/// A [`NearestNeighbors`] implementation that does exhaustive search.
#[derive(Clone, Debug)]
pub struct ExhaustiveSearch<T>(Vec<T>);