Adopt and apply nightly rustfmt configuration

This commit is contained in:
Juno Takano 2026-02-16 16:17:10 -03:00
commit d7d034757a
45 changed files with 431 additions and 474 deletions

View file

@ -1,16 +1,17 @@
use std::{sync, time};
pub mod prelude {
pub use crate::log;
pub use crate::tlog;
pub use crate::log::Level::*;
pub use crate::log::now;
pub use crate::{
log,
log::{Level::*, now},
tlog,
};
}
pub mod graph;
pub mod log;
pub mod router;
pub mod syntax;
pub mod log;
pub static ONSET: sync::LazyLock<time::Instant> =
sync::LazyLock::new(time::Instant::now);