Skip to content

Commit 66ffea6

Browse files
committed
Switched the rc from std to alloc so that it'll compile when standard is not available
1 parent 7cb47db commit 66ffea6

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 GroupBy with the chunk key in IntoChunks
77
trait KeyFunction<A> {

0 commit comments

Comments
 (0)