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,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