diff --git a/src/groupbylazy.rs b/src/groupbylazy.rs index 6fca566ae..0241f85ba 100644 --- a/src/groupbylazy.rs +++ b/src/groupbylazy.rs @@ -1,7 +1,7 @@ -use alloc::vec::{self, Vec}; -use std::cell::{Cell, RefCell}; -use std::ops::Deref; use alloc::rc::Rc; +use alloc::vec::{self, Vec}; +use core::cell::{Cell, RefCell}; +use core::ops::Deref; /// A trait to unify `FnMut` for `ChunkBy` with the chunk key in `IntoChunks` trait KeyFunction {