diff --git a/implot-examples/implot-wgpu-demo/Cargo.lock b/implot-examples/implot-wgpu-demo/Cargo.lock index 5b9b915..441335d 100644 --- a/implot-examples/implot-wgpu-demo/Cargo.lock +++ b/implot-examples/implot-wgpu-demo/Cargo.lock @@ -723,8 +723,9 @@ dependencies = [ [[package]] name = "imgui-wgpu" -version = "0.13.1" -source = "git+https://github.com/4bb4/imgui-wgpu-rs?branch=upgrade-to-imgui-rs-0.7#10e906004bb0c5598654ff54a92ed1b73dea5493" +version = "0.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "79d5d73b68effcb4bcb89048e8c437e01c6d5675247d664188c584ce4d6d9696" dependencies = [ "bytemuck", "imgui", diff --git a/implot-examples/implot-wgpu-demo/Cargo.toml b/implot-examples/implot-wgpu-demo/Cargo.toml index 90fcfe2..ae4b918 100644 --- a/implot-examples/implot-wgpu-demo/Cargo.toml +++ b/implot-examples/implot-wgpu-demo/Cargo.toml @@ -13,5 +13,5 @@ futures = "^0.3.5" # executing async functions using blocking executor imgui = "=0.7.0" imgui-winit-support = "=0.7.0" # connection of input (keys) to imgui #imgui-wgpu = "=0.13.0" # imgui backend for drawing using wgpu -imgui-wgpu = { git = "https://github.com/4bb4/imgui-wgpu-rs", branch = "upgrade-to-imgui-rs-0.7" } +imgui-wgpu = "=0.14.0" examples-shared = { path = "../examples-shared" }