implot-rs/implot-examples/implot-wgpu-demo/Cargo.toml
4bb4 6bb1809690 Updated versions and fixed build errors. See comments.
- This commit fixes the regular build and the glium example. The WGPU
  example needs an updated imgui-wgpu to point to the new imgui-sys
  version for things to work.
- The im_str and ImString usage deprecations are not fixed yet.
- There is no version bump for cimplot yet.
2021-10-03 12:34:38 +02:00

17 lines
524 B
TOML

[package]
name = "implot-wgpu-demo"
version = "0.1.0"
authors = ["Benedikt Mandelkow <benedikt.mandelkow@rwth-aachen.de>", "imgui-wgpu contributors"]
edition = "2018"
resolver = "2"
[dependencies]
implot = { path = "../../" }
wgpu = "0.10"
winit = "0.24" # opening windows and handling input
futures = "^0.3.5" # executing async functions using blocking executor
imgui = "=0.8.0"
imgui-winit-support = "=0.8.0" # connection of input (keys) to imgui
imgui-wgpu = "=0.17.0"
examples-shared = { path = "../examples-shared" }