diff --git a/src/collections/mod.rs b/src/collections/mod.rs index c2d4b9aa09f48075dcd96913363bab8cc9be3fda..243c723d50aa4a11c695146cb31f1874e164c268 100644 --- a/src/collections/mod.rs +++ b/src/collections/mod.rs @@ -1,5 +1,8 @@ mod string_pool; mod scoped_buffer; +mod sets; + pub(crate) use string_pool::{StringPool, StringRef}; -pub(crate) use scoped_buffer::{ScopedBuffer, ScopedSection}; \ No newline at end of file +pub(crate) use scoped_buffer::{ScopedBuffer, ScopedSection}; +pub(crate) use sets::DequeSet; \ No newline at end of file