diff --git a/Cargo.toml b/Cargo.toml index 0f2bb30ec..f0438d14a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,6 +13,3 @@ members = [ package.rust-version = "1.70" resolver = "2" - -[patch.crates-io] -glium = { git="https://github.com/glium/glium" } diff --git a/imgui-examples/Cargo.toml b/imgui-examples/Cargo.toml index 09db78b03..6accc2e73 100644 --- a/imgui-examples/Cargo.toml +++ b/imgui-examples/Cargo.toml @@ -10,7 +10,7 @@ publish = false [dev-dependencies] copypasta = "0.8" -glium = { version = "0.33.0", default-features = true } +glium = { version = "0.34.0", default-features = true } image = "0.23" imgui = { path = "../imgui", features = ["tables-api"] } imgui-glium-renderer = { path = "../imgui-glium-renderer" } diff --git a/imgui-glium-renderer/Cargo.toml b/imgui-glium-renderer/Cargo.toml index 8122719bb..f83807172 100644 --- a/imgui-glium-renderer/Cargo.toml +++ b/imgui-glium-renderer/Cargo.toml @@ -10,11 +10,11 @@ license = "MIT OR Apache-2.0" categories = ["gui", "rendering"] [dependencies] -glium = { version = "0.33.0", default-features = false } +glium = { version = "0.34.0", default-features = false } imgui = { version = "0.11.0", path = "../imgui" } [dev-dependencies] -glium = { version = "0.33.0", default-features = false, features = ["glutin_backend"] } +glium = { version = "0.34.0", default-features = false, features = ["glutin_backend"] } imgui-winit-support = {path = "../imgui-winit-support"} glutin = "0.31.1" glutin-winit = "0.4.2"