implot-rs/implot-examples/implot-glium-demo/Cargo.toml
4bb4 6179cf1f8d Locked imgui versions down more. See comments.
Due to the yanking of imgui-winit-support 0.6.1, builds that did
not have a lock file started failing in places. I've now locked
the versions of imgui and friends to exactly 0.6.0 to avert those
issues for the time being, with the longer-term fix being the
upgrade of all those to 0.7.0 in #13.
2021-02-06 10:02:58 +01: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.28", default-features = true }
image = "0.23"
imgui-sys = "0.6.0"
imgui = "=0.6.0"
imgui-glium-renderer = "=0.6.0"
imgui-winit-support = "=0.6.0"
implot-sys = { path = "../../implot-sys" }
implot = { path = "../../" }
examples-shared = { path = "../examples-shared" }