diff --git a/Cargo.lock b/Cargo.lock index e026f122b4de..ff808faabd24 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -287,7 +287,7 @@ checksum = "47921d14afc4daad9bedc926099bc6edcaa23e37a957448f86cdefcbafe2f632" dependencies = [ "bitflags 2.6.0", "fnv", - "glow", + "glow 0.13.1", "imgref", "log", "lru", @@ -685,6 +685,18 @@ dependencies = [ "web-sys", ] +[[package]] +name = "glow" +version = "0.15.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e33cd8ff5e02c1a5463ec10a846c8f3166a3ae0382ec33de6a327ea6dd61c41d" +dependencies = [ + "js-sys", + "slotmap", + "wasm-bindgen", + "web-sys", +] + [[package]] name = "gobject-sys" version = "0.21.0" @@ -790,7 +802,7 @@ dependencies = [ "epoxy", "femtovg", "glium", - "glow", + "glow 0.15.0", "gtk4", "im-rc", "image", diff --git a/examples/Cargo.toml b/examples/Cargo.toml index 38a8211b87e5..5395c7654084 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -9,7 +9,7 @@ chrono = "0.4" femtovg = { version = "0.9", optional = true, default-features = false } glium = { version = "0.36", optional = true, default-features = false } -glow = { version = "0.13.0", optional = true } +glow = { version = "0.15.0", optional = true } epoxy = { version = "0.1.0", optional = true } libloading = { version = "0.8.5", optional = true } im-rc = { version = "15", optional = true }