summaryrefslogtreecommitdiff
path: root/src/collection.rs
diff options
context:
space:
mode:
authorMica White <botahamec@outlook.com>2026-09-13 15:12:08 -0400
committerMica White <botahamec@outlook.com>2026-09-13 15:12:08 -0400
commit16d6bd7ece4c4b9b72f6bd51c9b034270b745525 (patch)
tree4ff744fc41319ce73abe06416fabeaa7c17fbd46 /src/collection.rs
parent9fd7b94cd7c20abe66cea875a0e83e76a7a00fbc (diff)
Support no_stdno-std
Diffstat (limited to 'src/collection.rs')
-rwxr-xr-xsrc/collection.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/collection.rs b/src/collection.rs
index c97bbd2..c02e2c2 100755
--- a/src/collection.rs
+++ b/src/collection.rs
@@ -1,4 +1,6 @@
-use std::cell::UnsafeCell;
+use core::cell::UnsafeCell;
+
+use alloc::vec::Vec;
use crate::{lockable::RawLock, ThreadKey};