From 285d494041dc390ac7bc2c4174b57445508c9230 Mon Sep 17 00:00:00 2001 From: Thomas BESSOU Date: Sun, 2 Jun 2024 22:11:59 +0200 Subject: [PATCH] Prefer using core to std for the same reason as previous commit --- src/groupbylazy.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 {