c522d12e0e
- 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 https://github.com/Yatekii/imgui-wgpu-rs/pull/44 is merged and a new release of `imgui-wgpu` is out - The WIP `wgpu` 0.7 update in https://github.com/parasyte/pixels/pull/134 will be needed for `imgui-wgpu` 0.14 - Update MSRV for `imgui` 0.7
21 lines
482 B
TOML
21 lines
482 B
TOML
[package]
|
|
name = "imgui-winit"
|
|
version = "0.1.0"
|
|
authors = ["Jay Oster <jay@kodewerx.org>"]
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
[features]
|
|
optimize = ["log/release_max_level_warn"]
|
|
default = ["optimize"]
|
|
|
|
[dependencies]
|
|
env_logger = "0.8"
|
|
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"
|
|
winit_input_helper = "0.9"
|