From b22bc391da08df9c88a3aacfd76f678a6ae59d5f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 18 Jan 2024 08:51:05 +0000 Subject: [PATCH] Update glow requirement from 0.12.1 to 0.13.1 Updates the requirements on [glow](https://github.com/grovesNL/glow) to permit the latest version. - [Commits](https://github.com/grovesNL/glow/commits) --- updated-dependencies: - dependency-name: glow dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- examples/render-opengl/Cargo.toml | 2 +- examples/render-webgl/Cargo.toml | 2 +- inox2d-opengl/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/render-opengl/Cargo.toml b/examples/render-opengl/Cargo.toml index e4d11ff..835b6ff 100644 --- a/examples/render-opengl/Cargo.toml +++ b/examples/render-opengl/Cargo.toml @@ -10,7 +10,7 @@ inox2d-opengl = { path = "../../inox2d-opengl" } clap = { version = "4.1.8", features = ["derive"] } glam = { version = "0.24.0", features = ["bytemuck"] } -glow = { version = "0.12.1" } +glow = { version = "0.13.1" } glutin = "0.31.2" glutin-winit = "0.4.2" raw-window-handle = "0.5.1" diff --git a/examples/render-webgl/Cargo.toml b/examples/render-webgl/Cargo.toml index 943b8ed..d366823 100644 --- a/examples/render-webgl/Cargo.toml +++ b/examples/render-webgl/Cargo.toml @@ -9,7 +9,7 @@ inox2d-opengl = { path = "../../inox2d-opengl" } console_error_panic_hook = "0.1.7" glam = "0.24.0" -glow = "0.12.1" +glow = "0.13.1" js-sys = "0.3.64" reqwest = "0.11.18" tracing = "0.1.37" diff --git a/inox2d-opengl/Cargo.toml b/inox2d-opengl/Cargo.toml index 7c0f5b9..51edf18 100644 --- a/inox2d-opengl/Cargo.toml +++ b/inox2d-opengl/Cargo.toml @@ -11,6 +11,6 @@ categories = ["graphics", "rendering"] [dependencies] inox2d = { path = "../inox2d" } glam = "0.24.0" -glow = { version = "0.12.1" } +glow = { version = "0.13.1" } thiserror = "1.0.39" tracing = "0.1.37"