mirror of
https://github.com/salsa-rs/salsa.git
synced 2025-08-04 11:00:05 +00:00
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:
parent
20a347e147
commit
a89e3d2357
78 changed files with 398 additions and 647 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue