Pointed back to mainstream imgui-wgpu

This commit is contained in:
4bb4 2021-04-25 19:00:15 +02:00
parent 9e44b63fa3
commit e1fcd84a6a
2 changed files with 4 additions and 3 deletions

View file

@ -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",

View file

@ -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" }