Pinned imgui dependency to a fixed commit
This commit is contained in:
parent
e847f23fb2
commit
3d6e1ee938
4 changed files with 10 additions and 10 deletions
|
@ -7,8 +7,8 @@ Rust bindings for [ImPlot](https://github.com/epezent/implot), built by running
|
|||
|
||||
## Requirements
|
||||
imgui-rs requires minimum Rust version 1.40, so this project does as well by extension.
|
||||
Currently the master branch of imgui-rs is used as a dependency until
|
||||
https://github.com/Gekkio/imgui-rs/pull/339 makes it into a release.
|
||||
Currently a pinned version (66260c123b9a80275bd3a366ef403444db11a676) of imgui-rs is used
|
||||
as a dependency until https://github.com/Gekkio/imgui-rs/pull/339 makes it into a release.
|
||||
|
||||
The sys crate compiles implot, so a C++ compiler will also be required.
|
||||
|
||||
|
|
|
@ -13,10 +13,10 @@ publish = false
|
|||
clipboard = "0.5"
|
||||
glium = { version = "0.27", default-features = true }
|
||||
image = "0.23"
|
||||
imgui-sys = { git = "https://github.com/Gekkio/imgui-rs/", branch = "master" }
|
||||
imgui = { git = "https://github.com/Gekkio/imgui-rs/", branch = "master" }
|
||||
imgui-glium-renderer = { git = "https://github.com/Gekkio/imgui-rs/", branch = "master" }
|
||||
imgui-winit-support = { git = "https://github.com/Gekkio/imgui-rs/", branch = "master" }
|
||||
imgui-sys = { git = "https://github.com/Gekkio/imgui-rs/", rev = "66260c123b9a80275bd3a366ef403444db11a676" }
|
||||
imgui = { git = "https://github.com/Gekkio/imgui-rs/", rev = "66260c123b9a80275bd3a366ef403444db11a676" }
|
||||
imgui-glium-renderer = { git = "https://github.com/Gekkio/imgui-rs/", rev = "66260c123b9a80275bd3a366ef403444db11a676" }
|
||||
imgui-winit-support = { git = "https://github.com/Gekkio/imgui-rs/", rev = "66260c123b9a80275bd3a366ef403444db11a676" }
|
||||
|
||||
implot-sys = { path = "../implot-sys" }
|
||||
implot = { path = "../" }
|
||||
|
|
|
@ -8,5 +8,5 @@ edition = "2018"
|
|||
|
||||
[dependencies]
|
||||
bindgen = "0.53.1"
|
||||
imgui-sys = { git = "https://github.com/Gekkio/imgui-rs/", branch = "master" }
|
||||
imgui = { git = "https://github.com/Gekkio/imgui-rs/", branch = "master" }
|
||||
imgui-sys = { git = "https://github.com/Gekkio/imgui-rs/", rev = "66260c123b9a80275bd3a366ef403444db11a676" }
|
||||
imgui = { git = "https://github.com/Gekkio/imgui-rs/", rev = "66260c123b9a80275bd3a366ef403444db11a676" }
|
||||
|
|
|
@ -12,8 +12,8 @@ build = "build.rs"
|
|||
links = "implot"
|
||||
|
||||
[dependencies]
|
||||
imgui-sys = { git = "https://github.com/Gekkio/imgui-rs/", branch = "master" }
|
||||
imgui = { git = "https://github.com/Gekkio/imgui-rs/", branch = "master" }
|
||||
imgui-sys = { git = "https://github.com/Gekkio/imgui-rs/", rev = "66260c123b9a80275bd3a366ef403444db11a676" }
|
||||
imgui = { git = "https://github.com/Gekkio/imgui-rs/", rev = "66260c123b9a80275bd3a366ef403444db11a676" }
|
||||
|
||||
[build-dependencies]
|
||||
cc = "1.0"
|
||||
|
|
Loading…
Reference in a new issue