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"
|
2021-09-04 04:53:17 +00:00
|
|
|
resolver = "2"
|
2020-10-12 22:36:31 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2020-10-30 11:51:57 +00:00
|
|
|
implot = { path = "../../" }
|
2020-10-12 22:36:31 +00:00
|
|
|
|
2021-09-04 04:53:17 +00:00
|
|
|
wgpu = "0.10"
|
2021-09-30 17:26:30 +00:00
|
|
|
winit = "0.25" # opening windows and handling input
|
2020-10-12 22:36:31 +00:00
|
|
|
futures = "^0.3.5" # executing async functions using blocking executor
|
2022-01-10 20:49:31 +00:00
|
|
|
imgui = "0.8.0"
|
|
|
|
imgui-winit-support = "0.8.0" # connection of input (keys) to imgui
|
|
|
|
imgui-wgpu = "0.17.1"
|
2020-10-30 11:51:57 +00:00
|
|
|
examples-shared = { path = "../examples-shared" }
|