Skip to content

Commit

Permalink
Switched the rc from std to alloc so that it'll compile when standard…
Browse files Browse the repository at this point in the history
… is not available
  • Loading branch information
erichCompSci authored and Ten0 committed Jun 2, 2024
1 parent aa1cfe1 commit 39f1fc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/groupbylazy.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use alloc::vec::{self, Vec};
use std::cell::{Cell, RefCell};
use std::ops::Deref;
use std::rc::Rc;
use alloc::rc::Rc;

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

0 comments on commit 39f1fc9

Please sign in to comment.