chore: Normalize imports style (#779)

* Default impl some ingredient functions

* chore: Normalize imports style

Effectively reformatted everything with
```toml
imports_granularity = "Module"
group_imports = "StdExternalCrate"
reorder_imports = true
```
This commit is contained in:
Lukas Wirth 2025-03-28 06:11:40 +01:00 committed by GitHub
parent 20a347e147
commit a89e3d2357
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
78 changed files with 398 additions and 647 deletions

View file

@ -1,19 +1,15 @@
#![allow(unreachable_patterns)]
// FIXME(rust-lang/rust#129031): regression in nightly
use std::{
path::PathBuf,
sync::{Arc, Mutex},
time::Duration,
};
use std::path::PathBuf;
use std::sync::{Arc, Mutex};
use std::time::Duration;
use crossbeam_channel::{unbounded, Sender};
use dashmap::{mapref::entry::Entry, DashMap};
use dashmap::mapref::entry::Entry;
use dashmap::DashMap;
use eyre::{eyre, Context, Report, Result};
use notify_debouncer_mini::{
new_debouncer,
notify::{RecommendedWatcher, RecursiveMode},
DebounceEventResult, Debouncer,
};
use notify_debouncer_mini::notify::{RecommendedWatcher, RecursiveMode};
use notify_debouncer_mini::{new_debouncer, DebounceEventResult, Debouncer};
use salsa::{Accumulator, Setter, Storage};
// ANCHOR: main