mirror of
https://github.com/eliasstepanik/imgui-rs.git
synced 2026-01-11 13:38:35 +00:00
To avoid conflicts in dependency version, this commit put examples using different renderers in different crates. Especially, glium and gfx do not necessarily depend on the same version of glutin. We have two examples: - imgui-examples (main examples, use gfx renderer here) - imgui-glium-examples (basic hello_glium example + maybe some texture stuff) Once vulcano support lands, we may add: imgui-vulkano-examples. This commit currently only moves files around. We plan to use gfx as a "main2 renderer for now on as gfx is more actively maintained that glium. Subsequent commits will migrate some glium examples to gfx.
17 lines
527 B
TOML
17 lines
527 B
TOML
[package]
|
|
name = "imgui-examples"
|
|
version = "0.0.22-pre"
|
|
authors = ["Joonas Javanainen <joonas.javanainen@gmail.com>", "imgui-rs contributors"]
|
|
description = "imgui crate examples"
|
|
homepage = "https://github.com/Gekkio/imgui-rs"
|
|
repository = "https://github.com/Gekkio/imgui-rs"
|
|
license = "MIT/Apache-2.0"
|
|
publish = false
|
|
|
|
[dev-dependencies]
|
|
gfx = "0.17"
|
|
gfx_window_glutin = "0.26"
|
|
glutin = "0.18"
|
|
imgui = { version = "0.0.22-pre", path = "../" }
|
|
imgui-gfx-renderer = { version = "0.0.22-pre", path = "../imgui-gfx-renderer" }
|