Add new dependencies, downgrade glium
Added imgui and its renderer dependencies. Downgraded glium to 0.35 to make it work with imgui-glium-renderer
This commit is contained in:
parent
7e4168eee5
commit
5358fea0f9
2 changed files with 113 additions and 11 deletions
11
Cargo.toml
11
Cargo.toml
|
|
@ -7,12 +7,15 @@ edition = "2021"
|
|||
anyhow = "1.0.98"
|
||||
glam = "0.30.4"
|
||||
|
||||
# glium already re-exports glutin/winit, but we enable the helper features explicitly
|
||||
glium = { version = "0.36.0", features = ["glutin_backend", "simple_window_builder"] }
|
||||
glium = { version = "0.35.0", features = ["glutin_backend", "simple_window_builder"] }
|
||||
gltf = { version = "1.4.1", features = ["import"] }
|
||||
|
||||
# explicit glutin for raw types (same semver as glium’s internal one)
|
||||
glutin = { version = "0.32.3", default-features = false }
|
||||
|
||||
hecs = "0.10.5"
|
||||
image = "0.25.6"
|
||||
|
||||
imgui = "0.12"
|
||||
imgui-winit-support = "0.13"
|
||||
imgui-glium-renderer = "0.13"
|
||||
|
||||
winit = "0.30"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue