Adopt and apply nightly rustfmt configuration
This commit is contained in:
parent
a7770e1486
commit
d7d034757a
45 changed files with 431 additions and 474 deletions
11
src/lib.rs
11
src/lib.rs
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue