implot-rs/implot-examples/implot-wgpu-demo/Cargo.toml

18 lines
571 B
TOML
Raw Normal View History

[package]
2020-10-30 11:54:18 +00:00
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.7"
winit = "0.24" # opening windows and handling input
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
2021-04-25 17:00:15 +00:00
imgui-wgpu = "=0.14.0"
examples-shared = { path = "../examples-shared" }