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:
reo 2025-07-05 20:39:35 +03:00
parent 7e4168eee5
commit 5358fea0f9
2 changed files with 113 additions and 11 deletions

View file

@ -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 gliums 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"