implot-rs/implot-examples/implot-glium-demo/Cargo.toml
4bb4 5177415a25 Upgraded to imgui-rs 0.7, see comments.
- The glium example was upgraded as well and works.
- The wgpu example was not yet touched in this commit, it will
  require a version of imgui-wgpu that points to imgui-rs 0.7.0
  as well to work.
2021-09-12 11:44:04 +02:00

23 lines
691 B
TOML

[package]
name = "implot-glium-demo"
version = "0.0.0"
edition = "2018"
authors = ["Sandro Merkli", "implot-rs contributors"]
description = "implot examples, with backend code for using glium (originally from imgui-examples)"
homepage = "https://github.com/4bb4/implot-rs"
repository = "https://github.com/4bb4/implot-rs"
license = "MIT/Apache-2.0"
publish = false
[dependencies]
clipboard = "0.5"
glium = { version = "0.29", default-features = true }
image = "0.23"
imgui-sys = "0.7.0"
imgui = "=0.7.0"
imgui-glium-renderer = "=0.7.0"
imgui-winit-support = "=0.7.0"
implot-sys = { path = "../../implot-sys" }
implot = { path = "../../" }
examples-shared = { path = "../examples-shared" }