From 11c3527cd0b869ae738cc7f21feddac98c5dcab2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Dec 2024 07:29:22 +0000 Subject: [PATCH] build(deps): bump glow from 0.15.0 to 0.16.0 Bumps [glow](https://github.com/grovesNL/glow) from 0.15.0 to 0.16.0. - [Commits](https://github.com/grovesNL/glow/commits) --- updated-dependencies: - dependency-name: glow dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 16 ++++++++++++++-- examples/Cargo.toml | 2 +- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 602da4388af6..e8608e436036 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -337,7 +337,7 @@ dependencies = [ "bitflags 2.6.0", "bytemuck", "fnv", - "glow", + "glow 0.15.0", "imgref", "log", "lru", @@ -761,6 +761,18 @@ dependencies = [ "web-sys", ] +[[package]] +name = "glow" +version = "0.16.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c5e5ea60d70410161c8bf5da3fdfeaa1c72ed2c15f8bbb9d19fe3a4fad085f08" +dependencies = [ + "js-sys", + "slotmap", + "wasm-bindgen", + "web-sys", +] + [[package]] name = "gobject-sys" version = "0.21.0" @@ -866,7 +878,7 @@ dependencies = [ "epoxy", "femtovg", "glium", - "glow", + "glow 0.16.0", "gtk4", "im-rc", "image", diff --git a/examples/Cargo.toml b/examples/Cargo.toml index 41ff80d79ef3..718b99fd7180 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -9,7 +9,7 @@ chrono = "0.4" femtovg = { version = "0.11", optional = true, default-features = false } glium = { version = "0.36", optional = true, default-features = false } -glow = { version = "0.15.0", optional = true } +glow = { version = "0.16.0", optional = true } epoxy = { version = "0.1.0", optional = true } libloading = { version = "0.8.6", optional = true } im-rc = { version = "15", optional = true }