run cargo fix for rust 2024 changes and rustfmt

Signed-off-by: June Clementine Strawberry <strawberry@puppygock.gay>
This commit is contained in:
June Clementine Strawberry
2025-02-23 01:17:45 -05:00
parent e97952b7f6
commit a1e1f40ded
320 changed files with 2212 additions and 2039 deletions
+2 -2
View File
@@ -9,7 +9,7 @@ mod reload;
mod suppress;
pub use capture::Capture;
pub use console::{is_systemd_mode, ConsoleFormat, ConsoleWriter};
pub use console::{ConsoleFormat, ConsoleWriter, is_systemd_mode};
pub use reload::{LogLevelReloadHandles, ReloadHandle};
pub use suppress::Suppress;
pub use tracing::Level;
@@ -34,7 +34,7 @@ pub struct Log {
#[macro_export]
macro_rules! event {
( $level:expr, $($x:tt)+ ) => { ::tracing::event!( $level, $($x)+ ) }
( $level:expr_2021, $($x:tt)+ ) => { ::tracing::event!( $level, $($x)+ ) }
}
#[macro_export]