diff options
Diffstat (limited to 'components/util/lib.rs')
-rw-r--r-- | components/util/lib.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/components/util/lib.rs b/components/util/lib.rs index 7ff5b1dd720..bdb2ccb99fc 100644 --- a/components/util/lib.rs +++ b/components/util/lib.rs @@ -53,9 +53,9 @@ pub mod cache; pub mod cursor; pub mod debug_utils; pub mod deque; -pub mod linked_list; pub mod geometry; pub mod ipc; +pub mod linked_list; pub mod logical_geometry; pub mod mem; pub mod opts; @@ -66,9 +66,9 @@ pub mod range; pub mod resource_files; pub mod str; pub mod task; -pub mod tid; -pub mod taskpool; pub mod task_state; +pub mod taskpool; +pub mod tid; pub mod vec; pub mod workqueue; |