From ef0c3aa093cf499f705dc8f74944e6da07a3696f Mon Sep 17 00:00:00 2001 From: Marijn Suijten Date: Tue, 15 Mar 2022 12:14:17 +0100 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 33fcead2b..381514518 100644 --- a/imgui/Cargo.toml +++ b/imgui/Cargo.toml @@ -19,7 +19,7 @@ features = ["freetype", "docking", "tables-api"] bitflags = "1" imgui-sys = { version = "0.8.1-alpha.0", path = "../imgui-sys" } mint = "0.5.6" -parking_lot = "0.11" +parking_lot = "0.12" cfg-if = "1" [features]