diff options
Diffstat (limited to 'src/crates/library/src/lib.rs')
-rw-r--r-- | src/crates/library/src/lib.rs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/crates/library/src/lib.rs b/src/crates/library/src/lib.rs index 219ccb3..f1ff34d 100644 --- a/src/crates/library/src/lib.rs +++ b/src/crates/library/src/lib.rs @@ -9,8 +9,6 @@ pub use profiler::ProfilerWrapper; mod eager_sorted_vector; mod eager_unique_vector; -mod lazy_sorted_vector; -mod lazy_unique_vector; mod btreemap; mod hashmap; @@ -21,8 +19,6 @@ mod vector; pub use eager_sorted_vector::EagerSortedVec; pub use eager_unique_vector::EagerUniqueVec; -pub use lazy_sorted_vector::LazySortedVec; -pub use lazy_unique_vector::LazyUniqueVec; #[cfg(test)] pub mod proptest; |