From ba3f16b2280d9cba2797f952ed5c37698ff22aee Mon Sep 17 00:00:00 2001 From: Jack Spira Date: Sun, 5 Sep 2021 14:48:52 -0700 Subject: [PATCH] in dependency hell I suffer --- imgui-gfx-examples/Cargo.toml | 4 ++-- imgui-glow-renderer/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/imgui-gfx-examples/Cargo.toml b/imgui-gfx-examples/Cargo.toml index 76e4908..5301df7 100644 --- a/imgui-gfx-examples/Cargo.toml +++ b/imgui-gfx-examples/Cargo.toml @@ -18,12 +18,12 @@ default = ["opengl"] [dev-dependencies] gfx = "0.18" gfx_device_gl = "0.16" -glutin = "0.26" +glutin = "0.27" image = "0.23" imgui = { path = "../imgui" } imgui-gfx-renderer = { path = "../imgui-gfx-renderer" } imgui-winit-support = { path = "../imgui-winit-support", default-features = false, features = ["winit-24"] } # glutin still depends on winit 0.24 -old_school_gfx_glutin_ext = "0.26" +old_school_gfx_glutin_ext = "0.27" [target.'cfg(windows)'.dev-dependencies] gfx_device_dx11 = "0.8" diff --git a/imgui-glow-renderer/Cargo.toml b/imgui-glow-renderer/Cargo.toml index 8505cb5..d3f8115 100644 --- a/imgui-glow-renderer/Cargo.toml +++ b/imgui-glow-renderer/Cargo.toml @@ -15,7 +15,7 @@ glow = "0.10.0" memoffset = "0.6.4" [dev-dependencies] -glutin = "0.26.0" +glutin = "0.27.0" imgui-winit-support = { version = "0.7.1", path = "../imgui-winit-support" } image = "0.23"