mirror of
https://github.com/eliasstepanik/imgui-rs.git
synced 2026-01-11 21:48:36 +00:00
Upgrade to gfx 0.18
This commit is contained in:
parent
7c1672b4f9
commit
a51afa0539
@ -8,6 +8,10 @@
|
||||
- `Ui::set_keyboard_focus_here`
|
||||
- Support for window position pivot
|
||||
|
||||
### Changed
|
||||
|
||||
- Upgrade to gfx 0.18
|
||||
|
||||
### Removed
|
||||
|
||||
- Various things that were deprecated in imgui-rs 0.0.21 and 0.0.22
|
||||
|
||||
595
imgui-examples/Cargo.lock
generated
595
imgui-examples/Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@ -10,9 +10,9 @@ license = "MIT/Apache-2.0"
|
||||
publish = false
|
||||
|
||||
[dev-dependencies]
|
||||
gfx = "0.17"
|
||||
gfx_window_glutin = "0.28"
|
||||
glutin = "0.19"
|
||||
gfx = "0.18"
|
||||
gfx_window_glutin = "0.30"
|
||||
glutin = "0.20"
|
||||
imgui = { version = "0.0.23-pre", path = "../" }
|
||||
imgui-gfx-renderer = { version = "0.0.23-pre", path = "../imgui-gfx-renderer" }
|
||||
imgui-winit-support = { version = "0.0.23-pre", path = "../imgui-winit-support" }
|
||||
|
||||
@ -13,6 +13,6 @@ categories = ["gui", "rendering"]
|
||||
travis-ci = { repository = "Gekkio/imgui-rs" }
|
||||
|
||||
[dependencies]
|
||||
gfx = "0.17"
|
||||
gfx = "0.18"
|
||||
imgui = { version = "0.0.23-pre", path = "../" }
|
||||
imgui-sys = { version = "0.0.23-pre", path = "../imgui-sys", features = ["gfx"] }
|
||||
|
||||
24
imgui-glium-examples/Cargo.lock
generated
24
imgui-glium-examples/Cargo.lock
generated
@ -321,34 +321,34 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "imgui"
|
||||
version = "0.0.22-pre"
|
||||
version = "0.0.23-pre"
|
||||
dependencies = [
|
||||
"imgui-sys 0.0.22-pre",
|
||||
"imgui-sys 0.0.23-pre",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "imgui-glium-examples"
|
||||
version = "0.0.22-pre"
|
||||
version = "0.0.23-pre"
|
||||
dependencies = [
|
||||
"glium 0.23.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"image 0.20.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"imgui 0.0.22-pre",
|
||||
"imgui-glium-renderer 0.0.22-pre",
|
||||
"imgui-winit-support 0.0.22-pre",
|
||||
"imgui 0.0.23-pre",
|
||||
"imgui-glium-renderer 0.0.23-pre",
|
||||
"imgui-winit-support 0.0.23-pre",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "imgui-glium-renderer"
|
||||
version = "0.0.22-pre"
|
||||
version = "0.0.23-pre"
|
||||
dependencies = [
|
||||
"glium 0.23.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"imgui 0.0.22-pre",
|
||||
"imgui-sys 0.0.22-pre",
|
||||
"imgui 0.0.23-pre",
|
||||
"imgui-sys 0.0.23-pre",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "imgui-sys"
|
||||
version = "0.0.22-pre"
|
||||
version = "0.0.23-pre"
|
||||
dependencies = [
|
||||
"bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"cc 1.0.28 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
@ -358,9 +358,9 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "imgui-winit-support"
|
||||
version = "0.0.22-pre"
|
||||
version = "0.0.23-pre"
|
||||
dependencies = [
|
||||
"imgui 0.0.22-pre",
|
||||
"imgui 0.0.23-pre",
|
||||
"winit 0.18.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
]
|
||||
|
||||
|
||||
@ -17,7 +17,7 @@ travis-ci = { repository = "Gekkio/imgui-rs" }
|
||||
libc = "0.2"
|
||||
bitflags = "1.0"
|
||||
glium = { version = "0.23", default-features = false, optional = true }
|
||||
gfx = { version = "0.17", optional = true }
|
||||
gfx = { version = "0.18", optional = true }
|
||||
|
||||
[build-dependencies]
|
||||
cc = "1.0"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user