From a57850c81bbd8dc636706e1cbed5c3d20a33701c Mon Sep 17 00:00:00 2001 From: "Alex Carter (victoryforphil)" Date: Tue, 16 Jul 2024 11:37:24 -0700 Subject: [PATCH] Updated Glow to 0.14 --- Cargo.lock | 18 +++++++++++++++--- Cargo.toml | 2 +- 2 files changed, 16 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8cc7f53f362..5f7eb1bcfd2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1178,7 +1178,7 @@ dependencies = [ "egui-wgpu", "egui-winit", "egui_glow", - "glow", + "glow 0.14.0", "glutin", "glutin-winit", "image", @@ -1326,7 +1326,7 @@ dependencies = [ "document-features", "egui", "egui-winit", - "glow", + "glow 0.14.0", "glutin", "glutin-winit", "log", @@ -1782,6 +1782,18 @@ dependencies = [ "web-sys", ] +[[package]] +name = "glow" +version = "0.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f865cbd94bd355b89611211e49508da98a1fce0ad755c1e8448fb96711b24528" +dependencies = [ + "js-sys", + "slotmap", + "wasm-bindgen", + "web-sys", +] + [[package]] name = "glutin" version = "0.31.2" @@ -4308,7 +4320,7 @@ dependencies = [ "block", "cfg_aliases", "core-graphics-types", - "glow", + "glow 0.13.1", "glutin_wgl_sys", "gpu-alloc", "gpu-allocator", diff --git a/Cargo.toml b/Cargo.toml index a8575f468be..6d2c45e875f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -72,7 +72,7 @@ backtrace = "0.3" bytemuck = "1.7.2" criterion = { version = "0.5.1", default-features = false } document-features = " 0.2.8" -glow = "0.13" +glow = "0.14" glutin = "0.31" glutin-winit = "0.4" image = { version = "0.25", default-features = false }