treewide: cargo fmt with 1.85

This commit is contained in:
Matthias Schiffer 2025-03-13 21:44:10 +01:00
parent 7bba5bae55
commit 775fcb2d1b
Signed by: neocturne
GPG key ID: 16EF3F64CB201D9C
8 changed files with 18 additions and 20 deletions

View file

@ -205,8 +205,10 @@ pub fn cli() -> Result<()> {
if config.num_threads != config.num_threads_initial {
pool = setup_threads(config.num_threads)?;
}
pool.install(move || loop {
wait_watcher(&args, &watch_channel)?;
generate(&config, &rt)?;
pool.install(move || {
loop {
wait_watcher(&args, &watch_channel)?;
generate(&config, &rt)?;
}
})
}

View file

@ -16,7 +16,7 @@ use tracing::{debug, info};
use super::{common::*, region_group::RegionGroup};
use crate::{
io::{fs, storage},
resource::{block_color, needs_biome, Colorf},
resource::{Colorf, block_color, needs_biome},
types::*,
util::coord_offset,
};