From d073b7140b0b48415b0bcc009f8e383a2491d426 Mon Sep 17 00:00:00 2001 From: Johannes Altmanninger Date: Sat, 25 Mar 2023 18:43:56 +0100 Subject: [PATCH] lib.rs: sort modules --- fish-rust/src/lib.rs | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/fish-rust/src/lib.rs b/fish-rust/src/lib.rs index 59c8990c8..4323bf2d7 100644 --- a/fish-rust/src/lib.rs +++ b/fish-rust/src/lib.rs @@ -9,8 +9,12 @@ #[macro_use] mod common; +mod abbrs; +mod builtins; mod color; +mod env; mod event; +mod expand; mod fd_monitor; mod fd_readable_set; mod fds; @@ -27,6 +31,8 @@ mod future_feature_flags; mod job_group; mod nix; mod parse_constants; +mod path; +mod re; mod redirection; mod signal; mod smoke; @@ -43,13 +49,5 @@ mod wchar_ffi; mod wgetopt; mod wutil; -mod abbrs; -mod builtins; -mod env; -mod re; - -mod expand; -mod path; - // Don't use `#[cfg(test)]` here to make sure ffi tests are built and tested mod tests;