mirror of
https://github.com/salsa-rs/salsa.git
synced 2025-08-10 05:48:17 +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,11 +1,9 @@
|
|||
use crate::{
|
||||
cycle::{CycleRecoveryStrategy, MAX_ITERATIONS},
|
||||
zalsa::ZalsaDatabase,
|
||||
zalsa_local::ActiveQueryGuard,
|
||||
Database, Event, EventKind,
|
||||
};
|
||||
|
||||
use super::{memo::Memo, Configuration, IngredientImpl};
|
||||
use crate::cycle::{CycleRecoveryStrategy, MAX_ITERATIONS};
|
||||
use crate::function::memo::Memo;
|
||||
use crate::function::{Configuration, IngredientImpl};
|
||||
use crate::zalsa::ZalsaDatabase;
|
||||
use crate::zalsa_local::ActiveQueryGuard;
|
||||
use crate::{Database, Event, EventKind};
|
||||
|
||||
impl<C> IngredientImpl<C>
|
||||
where
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue