From 71279bc095763328e3ca604ea3225b34f2aec676 Mon Sep 17 00:00:00 2001 From: Michael Krasnitski Date: Tue, 7 May 2024 00:08:25 -0400 Subject: [PATCH] Use imgui 0.12 --- Cargo.lock | 17 ++++++++++------- examples/imgui-winit/Cargo.toml | 4 ++-- 2 files changed, 12 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d3e06613..36ad5228 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1813,8 +1813,9 @@ dependencies = [ [[package]] name = "imgui" -version = "0.11.0" -source = "git+https://github.com/imgui-rs/imgui-rs#ca05418cb449dadaabf014487c5c965908dfcbdd" +version = "0.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8addafa5cecf0515812226e806913814e02ce38d10215778082af5174abe5669" dependencies = [ "bitflags 1.3.2", "cfg-if", @@ -1825,8 +1826,9 @@ dependencies = [ [[package]] name = "imgui-sys" -version = "0.11.0" -source = "git+https://github.com/imgui-rs/imgui-rs#ca05418cb449dadaabf014487c5c965908dfcbdd" +version = "0.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ead193f9f4b60398e8b8f4ab1483e2321640d87aeebdaa3e5f44c55633ccd804" dependencies = [ "cc", "cfg-if", @@ -1837,7 +1839,7 @@ dependencies = [ [[package]] name = "imgui-wgpu" version = "0.24.0" -source = "git+https://github.com/mkrasnitski/imgui-wgpu-rs#a071e8380284d18ba081fc1bfabe96cde7343904" +source = "git+https://github.com/mkrasnitski/imgui-wgpu-rs#684a5ce3fc08caca7531924448d2a09af52b888e" dependencies = [ "bytemuck", "imgui", @@ -1863,8 +1865,9 @@ dependencies = [ [[package]] name = "imgui-winit-support" -version = "0.11.0" -source = "git+https://github.com/imgui-rs/imgui-rs#ca05418cb449dadaabf014487c5c965908dfcbdd" +version = "0.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e3c00d50ebf207505ea6bc9a5cdafb33c1d14a8fe854fff1fa3542f013f3952" dependencies = [ "imgui", "winit", diff --git a/examples/imgui-winit/Cargo.toml b/examples/imgui-winit/Cargo.toml index 643d8ee6..39392f4c 100644 --- a/examples/imgui-winit/Cargo.toml +++ b/examples/imgui-winit/Cargo.toml @@ -12,9 +12,9 @@ default = ["optimize"] [dependencies] env_logger = "0.10" error-iter = "0.4" -imgui = { git = "https://github.com/imgui-rs/imgui-rs" } +imgui = "0.12" imgui-wgpu = { git = "https://github.com/mkrasnitski/imgui-wgpu-rs" } -imgui-winit-support = { git = "https://github.com/imgui-rs/imgui-rs" } +imgui-winit-support = "0.12" log = "0.4" pixels = { path = "../.." } winit = "0.29"