Skip to content

Commit 39f1fc9

Browse files
erichCompSciTen0
authored andcommitted
Switched the rc from std to alloc so that it'll compile when standard is not available
1 parent aa1cfe1 commit 39f1fc9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/groupbylazy.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use alloc::vec::{self, Vec};
22
use std::cell::{Cell, RefCell};
33
use std::ops::Deref;
4-
use std::rc::Rc;
4+
use alloc::rc::Rc;
55

66
/// A trait to unify `FnMut` for `ChunkBy` with the chunk key in `IntoChunks`
77
trait KeyFunction<A> {

0 commit comments

Comments
 (0)