chore: run clippy and cargo fmt on pending changes

This commit is contained in:
Chance 2025-04-07 23:06:48 -04:00 committed by BitSyndicate
parent 939fcdd01c
commit 964a006c47
Signed by: bitsyndicate
GPG key ID: 443E4198D6BBA6DE
8 changed files with 34 additions and 24 deletions

View file

@ -195,10 +195,8 @@ impl CPU {
);
sys.refresh_cpu_all();
let cpu_opt = sys.cpus().first();
let brand = cpu_opt
.map(|cpu| cpu.brand().into())
.unwrap_or(CPUBrand::Other("unknown".into()));
@ -491,7 +489,7 @@ impl EngineInfo {
rustc_version: build_info::RUSTC_VERSION.to_string(),
wgpu_version: build_info::WGPU_VERSION.to_string(),
winit_version: build_info::WGPU_VERSION.to_string(),
commit_hash: build_info::GIT_COMMIT_HASH.to_string()
commit_hash: build_info::GIT_COMMIT_HASH.to_string(),
}
}