Skip to content

Commit

Permalink
Fix build for imgui-winit example (parasyte#138)
Browse files Browse the repository at this point in the history
- The dependencies are a mess!
- Had to fork `imgui-wgpu`, which sits between 0.12 and 0.13 (has support for `winit` 0.24, but not `wgpu` 0.7)
- This is a temporary fix for CI, until Yatekii/imgui-wgpu-rs#44 is merged and a new release of `imgui-wgpu` is out
- The WIP `wgpu` 0.7 update in parasyte#134 will be needed for `imgui-wgpu` 0.14
- Update MSRV for `imgui` 0.7
  • Loading branch information
parasyte authored Feb 6, 2021
1 parent 0a893d6 commit c522d12
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
rust:
- stable
- beta
- 1.43.0
- 1.46.0
steps:
- name: Checkout sources
uses: actions/checkout@v2
Expand All @@ -40,7 +40,7 @@ jobs:
rust:
- stable
- beta
- 1.43.0
- 1.46.0
steps:
- name: Checkout sources
uses: actions/checkout@v2
Expand Down
6 changes: 3 additions & 3 deletions examples/imgui-winit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ default = ["optimize"]

[dependencies]
env_logger = "0.8"
imgui = "0.6"
imgui-wgpu = "0.12"
imgui-winit-support = "0.6"
imgui = "0.7"
imgui-wgpu = { git = "https://github.com/parasyte/imgui-wgpu-rs.git", rev = "8da89b3ad1ef54384b7ff4bd550adf9f808df1f8" }
imgui-winit-support = "0.7"
log = "0.4"
pixels = { path = "../.." }
winit = "0.24"
Expand Down

0 comments on commit c522d12

Please sign in to comment.