diff --git a/imgui-examples/Cargo.toml b/imgui-examples/Cargo.toml index a7e55c8..e646fe5 100644 --- a/imgui-examples/Cargo.toml +++ b/imgui-examples/Cargo.toml @@ -11,7 +11,7 @@ publish = false [dev-dependencies] gfx = "0.16" gfx_window_glutin = "0.17" -glium = { version = "0.17", default-features = true } +glium = { version = "0.18", default-features = true } glutin = "0.9" imgui = { version = "0.0.16-pre", path = "../" } imgui-gfx-renderer = { version = "0.0.16-pre", path = "../imgui-gfx-renderer" } diff --git a/imgui-glium-renderer/Cargo.toml b/imgui-glium-renderer/Cargo.toml index 8f59946..6040619 100644 --- a/imgui-glium-renderer/Cargo.toml +++ b/imgui-glium-renderer/Cargo.toml @@ -12,6 +12,6 @@ categories = ["gui", "rendering"] travis-ci = { repository = "Gekkio/imgui-rs" } [dependencies] -glium = { version = "0.17", default-features = false } +glium = { version = "0.18", default-features = false } imgui = { version = "0.0.16-pre", path = "../" } imgui-sys = { version = "0.0.16-pre", path = "../imgui-sys", features = ["glium"] } diff --git a/imgui-sys/Cargo.toml b/imgui-sys/Cargo.toml index aa09899..711674c 100644 --- a/imgui-sys/Cargo.toml +++ b/imgui-sys/Cargo.toml @@ -14,7 +14,7 @@ travis-ci = { repository = "Gekkio/imgui-rs" } [dependencies] bitflags = "0.9" -glium = { version = "0.17", default-features = false, optional = true } +glium = { version = "0.18", default-features = false, optional = true } gfx = { version = "0.16", optional = true } [build-dependencies]