From 63ddf872f96c35f10f5019f5a264adda1f098086 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Wed, 4 May 2022 21:58:37 +0100 Subject: [PATCH] main lib.rs: Sort the hyphen imports Signed-off-by: Ian Jackson --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index af864b19..4dd7b557 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -60,8 +60,8 @@ pub mod updates; pub mod ui; pub mod utils; +#[path = "fake-rng.rs"] pub mod fake_rng; +#[path = "fake-time.rs"] pub mod fake_time; #[path = "shapelib-toml.rs"] pub mod shapelib_toml; #[path = "slotmap-slot-idx.rs"] pub mod slotmap_slot_idx; #[path = "toml-de.rs"] pub mod toml_de; -#[path = "fake-rng.rs"] pub mod fake_rng; -#[path = "fake-time.rs"] pub mod fake_time; -- 2.30.2