From 9da029a8c376aaeea4046f3c09795150fe94b323 Mon Sep 17 00:00:00 2001 From: Wolfgang Bumiller Date: Tue, 4 Aug 2020 10:29:03 +0200 Subject: [PATCH] tools/mod.rs: sort modules Signed-off-by: Wolfgang Bumiller --- proxmox/src/tools/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxmox/src/tools/mod.rs b/proxmox/src/tools/mod.rs index bc2622b6..721e5d1d 100644 --- a/proxmox/src/tools/mod.rs +++ b/proxmox/src/tools/mod.rs @@ -5,9 +5,9 @@ use std::fmt; use anyhow::*; use lazy_static::lazy_static; -pub mod byte_buffer; pub mod as_any; pub mod borrow; +pub mod byte_buffer; pub mod common_regex; pub mod constnamemap; pub mod fd;