feat: switch away from parking_lot::Mutex

Switching away from `parking_lot::Mutex` as `std::sync::Mutex` performs
better in all scenarios on both of our targets (linux/windows).
This commit is contained in:
zack 2025-03-30 16:27:35 -04:00
parent 234e2ab78d
commit f71f0d8e10
No known key found for this signature in database
GPG key ID: EE8A2B709E2401D1
10 changed files with 66 additions and 38 deletions

3
Cargo.lock generated
View file

@ -613,7 +613,6 @@ version = "0.1.0"
dependencies = [
"ash",
"ash-window",
"parking_lot",
"thiserror 2.0.12",
"tracing",
"winit",
@ -1308,7 +1307,6 @@ dependencies = [
"gfx_hal",
"glam",
"gpu-allocator",
"parking_lot",
"resource_manager",
"shaderc",
"thiserror 2.0.12",
@ -1324,7 +1322,6 @@ dependencies = [
"ash",
"gfx_hal",
"gpu-allocator",
"parking_lot",
"thiserror 2.0.12",
"tracing",
]