aboutsummaryrefslogtreecommitdiff
path: root/src/seq/index.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/seq/index.rs')
-rw-r--r--src/seq/index.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/seq/index.rs b/src/seq/index.rs
index ae36c32..b38e464 100644
--- a/src/seq/index.rs
+++ b/src/seq/index.rs
@@ -16,11 +16,11 @@
use alloc::collections::BTreeSet;
#[cfg(feature = "std")] use std::collections::HashSet;
-#[cfg(feature = "alloc")]
-use crate::distributions::{uniform::SampleUniform, Distribution, Uniform};
#[cfg(feature = "std")]
use crate::distributions::WeightedError;
-use crate::Rng;
+
+#[cfg(feature = "alloc")]
+use crate::{Rng, distributions::{uniform::SampleUniform, Distribution, Uniform}};
#[cfg(feature = "serde1")]
use serde::{Serialize, Deserialize};
@@ -380,7 +380,7 @@ where
#[cfg(not(feature = "nightly"))]
{
- use std::collections::BinaryHeap;
+ use alloc::collections::BinaryHeap;
// Partially sort the array such that the `amount` elements with the largest
// keys are first using a binary max heap.