From 028aa33531f5beb15ef3e166c8d8b16b66e191d0 Mon Sep 17 00:00:00 2001 From: Emil Ernerfeldt Date: Wed, 13 Sep 2023 08:38:04 +0200 Subject: [PATCH] standardize again --- crates/eframe/src/lib.rs | 1 + crates/egui-wgpu/src/lib.rs | 1 + crates/egui/src/lib.rs | 1 + crates/egui_extras/src/lib.rs | 1 + crates/egui_glow/src/lib.rs | 1 + 5 files changed, 5 insertions(+) diff --git a/crates/eframe/src/lib.rs b/crates/eframe/src/lib.rs index dab4aae61e7..4ceae307a9f 100644 --- a/crates/eframe/src/lib.rs +++ b/crates/eframe/src/lib.rs @@ -349,4 +349,5 @@ mod profiling_scopes { pub(crate) use profile_scope; } +#[allow(unused_imports)] pub(crate) use profiling_scopes::*; diff --git a/crates/egui-wgpu/src/lib.rs b/crates/egui-wgpu/src/lib.rs index 9e87ffd12a7..8d9d5912c5d 100644 --- a/crates/egui-wgpu/src/lib.rs +++ b/crates/egui-wgpu/src/lib.rs @@ -228,4 +228,5 @@ mod profiling_scopes { pub(crate) use profile_scope; } +#[allow(unused_imports)] pub(crate) use profiling_scopes::*; diff --git a/crates/egui/src/lib.rs b/crates/egui/src/lib.rs index 25edfc31058..0d669e70a1d 100644 --- a/crates/egui/src/lib.rs +++ b/crates/egui/src/lib.rs @@ -658,4 +658,5 @@ mod profiling_scopes { pub(crate) use profile_scope; } +#[allow(unused_imports)] pub(crate) use profiling_scopes::*; diff --git a/crates/egui_extras/src/lib.rs b/crates/egui_extras/src/lib.rs index e8113ddf36b..9e918ce1acd 100644 --- a/crates/egui_extras/src/lib.rs +++ b/crates/egui_extras/src/lib.rs @@ -57,6 +57,7 @@ mod profiling_scopes { pub(crate) use profile_scope; } +#[allow(unused_imports)] pub(crate) use profiling_scopes::*; // --------------------------------------------------------------------------- diff --git a/crates/egui_glow/src/lib.rs b/crates/egui_glow/src/lib.rs index 27c3ebcc6f4..4af9e409c4d 100644 --- a/crates/egui_glow/src/lib.rs +++ b/crates/egui_glow/src/lib.rs @@ -137,4 +137,5 @@ mod profiling_scopes { pub(crate) use profile_scope; } +#[allow(unused_imports)] pub(crate) use profiling_scopes::*;