From ba8a1cbacfdc7bc11c970cfc7de5c296a8c48d2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= Date: Tue, 3 May 2022 05:55:08 +0200 Subject: [PATCH 1/2] Update parking_lot. --- glutin/Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/glutin/Cargo.toml b/glutin/Cargo.toml index ddd23eec90..421f42b6bc 100644 --- a/glutin/Cargo.toml +++ b/glutin/Cargo.toml @@ -27,7 +27,7 @@ winit = { version = "0.26", default-features = false } [target.'cfg(target_os = "android")'.dependencies] android_glue = "0.2" glutin_egl_sys = { version = "0.1.5", path = "../glutin_egl_sys" } -parking_lot = "0.11" +parking_lot = "0.12" [target.'cfg(target_os = "emscripten")'.dependencies] glutin_emscripten_sys = { version = "0.1.1", path = "../glutin_emscripten_sys" } @@ -54,7 +54,7 @@ features = [ libloading = "0.7" glutin_wgl_sys = { version = "0.1.5", path = "../glutin_wgl_sys" } glutin_egl_sys = { version = "0.1.5", path = "../glutin_egl_sys" } -parking_lot = "0.11" +parking_lot = "0.12" [target.'cfg(any(target_os = "linux", target_os = "freebsd", target_os = "dragonfly", target_os = "netbsd", target_os = "openbsd"))'.dependencies] osmesa-sys = "0.1" @@ -63,5 +63,5 @@ wayland-egl = { version = "0.29", optional = true } libloading = "0.7" glutin_egl_sys = { version = "0.1.5", path = "../glutin_egl_sys" } glutin_glx_sys = { version = "0.1.7", path = "../glutin_glx_sys", optional = true } -parking_lot = "0.11" +parking_lot = "0.12" log = "0.4" From 8aff1226be1ce500589694e304275339bf20b974 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= Date: Tue, 3 May 2022 05:55:25 +0200 Subject: [PATCH 2/2] Minor version bump. --- glutin/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glutin/Cargo.toml b/glutin/Cargo.toml index 421f42b6bc..53c4f951c4 100644 --- a/glutin/Cargo.toml +++ b/glutin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "glutin" -version = "0.28.0" +version = "0.28.1" authors = ["The glutin contributors", "Pierre Krieger "] description = "Cross-platform OpenGL context provider." keywords = ["windowing", "opengl"]