2020-10-12 22:36:31 +00:00
|
|
|
[package]
|
2020-10-30 11:54:18 +00:00
|
|
|
name = "implot-wgpu-demo"
|
2020-10-12 22:36:31 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Benedikt Mandelkow <benedikt.mandelkow@rwth-aachen.de>", "imgui-wgpu contributors"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
2020-10-30 11:51:57 +00:00
|
|
|
implot = { path = "../../" }
|
2020-10-12 22:36:31 +00:00
|
|
|
|
2021-02-06 09:02:58 +00:00
|
|
|
wgpu = "=0.6.0"
|
|
|
|
winit = "0.23" # opening windows and handling input
|
2020-10-12 22:36:31 +00:00
|
|
|
futures = "^0.3.5" # executing async functions using blocking executor
|
2021-02-06 09:02:58 +00:00
|
|
|
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
|
2020-10-30 11:51:57 +00:00
|
|
|
examples-shared = { path = "../examples-shared" }
|