From 5207b29a56f888ee757f92d685344480be04c5cd Mon Sep 17 00:00:00 2001 From: dbr Date: Sat, 19 Mar 2022 22:02:51 +1100 Subject: [PATCH] imgui: Upgrade parking_lot to 0.12 with windows-rs bindings `parking_lot` now uses windows-rs's `windows-sys` crate, officially developed and vetted by Microsoft - the bindings are autogenerated from metadata and faster to compile too. See also https://github.com/Amanieu/parking_lot/pull/311. --- imgui/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imgui/Cargo.toml b/imgui/Cargo.toml index 7ac13294f..7da9e5d7f 100644 --- a/imgui/Cargo.toml +++ b/imgui/Cargo.toml @@ -18,7 +18,7 @@ features = ["freetype", "tables-api"] [dependencies] bitflags = "1" imgui-sys = { version = "0.8.2", path = "../imgui-sys" } -parking_lot = "0.11" +parking_lot = "0.12" [features] default = ["min-const-generics"]