From dd859807cd2dec56703484c8861e1fd69c69d95c Mon Sep 17 00:00:00 2001 From: dAxpeDDa Date: Sat, 27 May 2023 15:19:29 +0200 Subject: [PATCH] Bump `khronos-egl` to v6 --- Cargo.lock | 6 +++--- Cargo.toml | 2 +- wgpu-hal/Cargo.toml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6ba0a6bf36c..1a2765b8bcf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1466,12 +1466,12 @@ dependencies = [ [[package]] name = "khronos-egl" -version = "4.1.0" +version = "6.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8c2352bd1d0bceb871cb9d40f24360c8133c11d7486b68b5381c1dd1a32015e3" +checksum = "6aae1df220ece3c0ada96b8153459b67eebe9ae9212258bb0134ae60416fdf76" dependencies = [ "libc", - "libloading 0.7.4", + "libloading 0.8.1", "pkg-config", ] diff --git a/Cargo.toml b/Cargo.toml index 96f3f1fa674..9a9e11cf4bb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -115,7 +115,7 @@ winapi = "0.3" hassle-rs = "0.10.0" # Gles dependencies -khronos-egl = "4.1" +khronos-egl = "6" glow = "0.12.3" glutin = "0.29.1" diff --git a/wgpu-hal/Cargo.toml b/wgpu-hal/Cargo.toml index acc26e0624a..bb1ac205fa7 100644 --- a/wgpu-hal/Cargo.toml +++ b/wgpu-hal/Cargo.toml @@ -80,12 +80,12 @@ gpu-alloc = { version = "0.6", optional = true } gpu-descriptor = { version = "0.2", optional = true } smallvec = { version = "1", optional = true, features = ["union"] } -khronos-egl = { version = "4.1", features = ["dynamic"], optional = true } +khronos-egl = { version = "6", features = ["dynamic"], optional = true } libloading = { version = ">=0.7, <0.9", optional = true } renderdoc-sys = { version = "1.0.0", optional = true } [target.'cfg(target_os = "emscripten")'.dependencies] -khronos-egl = { version = "4.1", features = ["static", "no-pkg-config"] } +khronos-egl = { version = "6", features = ["static", "no-pkg-config"] } #Note: it's unused by emscripten, but we keep it to have single code base in egl.rs libloading = { version = ">=0.7, <0.9", optional = true }