mirror of
https://github.com/eliasstepanik/imgui-rs.git
synced 2026-01-11 21:48:36 +00:00
30 lines
852 B
TOML
30 lines
852 B
TOML
[package]
|
|
name = "imgui-gfx-examples"
|
|
version = "0.0.0"
|
|
edition = "2018"
|
|
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
|
|
|
|
[features]
|
|
opengl = ["imgui-gfx-renderer/opengl"]
|
|
directx = ["imgui-gfx-renderer/directx"]
|
|
default = ["opengl"]
|
|
|
|
[dev-dependencies]
|
|
gfx = "0.18"
|
|
gfx_device_gl = "0.16"
|
|
gfx_window_glutin = "0.31"
|
|
glutin = "0.21"
|
|
image = "0.22"
|
|
imgui = { version = "0.2.0", path = "../" }
|
|
imgui-gfx-renderer = { version = "0.2.0", path = "../imgui-gfx-renderer" }
|
|
imgui-winit-support = { version = "0.2.0", path = "../imgui-winit-support" }
|
|
|
|
[target.'cfg(windows)'.dev-dependencies]
|
|
gfx_device_dx11 = "0.8"
|
|
gfx_window_dxgi = "0.19"
|