diff --git a/src/collections/mod.rs b/src/collections/mod.rs index bdb02b45a4a07748023fa8cfcbd0183264d441ae..872f1834a59e38ea0060e22458248874ec3858cb 100644 --- a/src/collections/mod.rs +++ b/src/collections/mod.rs @@ -1,7 +1,6 @@ mod string_pool; mod scoped_buffer; mod sets; -mod mpmc_queue; mod raw_vec; // TODO: Finish this later, use alloc::alloc and alloc::Layout @@ -10,5 +9,4 @@ mod raw_vec; pub(crate) use string_pool::{StringPool, StringRef}; pub(crate) use scoped_buffer::{ScopedBuffer, ScopedSection}; pub(crate) use sets::DequeSet; -pub(crate) use mpmc_queue::MpmcQueue; pub(crate) use raw_vec::RawVec; \ No newline at end of file