[package]
edition = "2024"
name = "vk-graph-imgui"
version = "0.1.2"
authors = ["John Wells <john@attackgoat.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Dear ImGui renderer integration for vk-graph"
homepage = "https://github.com/attackgoat/vk-graph/tree/main/crates/vk-graph-imgui"
documentation = "https://docs.rs/vk-graph-imgui"
readme = "README.md"
keywords = [
"imgui",
"gamedev",
"vulkan",
]
categories = [
"game-development",
"multimedia::images",
"rendering::engine",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/attackgoat/vk-graph"
[lib]
name = "vk_graph_imgui"
path = "src/lib.rs"
[dependencies.bytemuck]
version = "1.25"
[dependencies.imgui]
version = "0.12"
[dependencies.imgui-winit-support]
version = "0.13"
[dependencies.log]
version = "0.4"
[dependencies.vk-graph]
version = "0.14.3"
[dependencies.vk-shader-macros]
version = "0.2"
[target.'cfg(target_os = "linux")'.dependencies.winit]
version = "0.30"
features = [
"x11",
"wayland",
]
[target.'cfg(target_os = "macos")'.dependencies.winit]
version = "0.30"
[target.'cfg(target_os = "windows")'.dependencies.winit]
version = "0.30"