6179cf1f8d
Due to the yanking of imgui-winit-support 0.6.1, builds that did not have a lock file started failing in places. I've now locked the versions of imgui and friends to exactly 0.6.0 to avert those issues for the time being, with the longer-term fix being the upgrade of all those to 0.7.0 in #13.
16 lines
550 B
TOML
16 lines
550 B
TOML
[package]
|
|
name = "implot-wgpu-demo"
|
|
version = "0.1.0"
|
|
authors = ["Benedikt Mandelkow <benedikt.mandelkow@rwth-aachen.de>", "imgui-wgpu contributors"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
implot = { path = "../../" }
|
|
|
|
wgpu = "=0.6.0"
|
|
winit = "0.23" # opening windows and handling input
|
|
futures = "^0.3.5" # executing async functions using blocking executor
|
|
imgui = "=0.6.0"
|
|
imgui-winit-support = "=0.6.0" # connection of input (keys) to imgui
|
|
imgui-wgpu = "=0.12.0" # imgui backend for drawing using wgpu
|
|
examples-shared = { path = "../examples-shared" }
|