raindrop/crates/vk-rs/Cargo.toml

34 lines
975 B
TOML
Raw Normal View History

2024-12-28 18:36:05 -05:00
[package]
name = "vk-rs"
version = "0.1.0"
edition = "2021"
[dependencies]
ash.workspace = true
color-eyre.workspace = true
winit.workspace = true
raw-window-handle.workspace = true
cfg-if = "1.0.0"
cgmath = "0.18.0"
2024-12-29 20:00:14 -05:00
spirv-std.workspace = true
2024-12-28 18:36:05 -05:00
gpu-allocator.workspace = true
egui-ash = { version = "0.4.0", features = ["gpu-allocator"] }
tobj = "4.0.2"
egui = "0.25.0"
ash-window = "0.12.0"
shaders-shared = { path = "../shaders-shared" }
2024-12-28 21:46:32 -05:00
puffin = { git = "https://github.com/EmbarkStudios/puffin", rev = "5ac4e54164ee89bd68c29f288c2b5613afc2c929" }
puffin_egui = { git = "https://github.com/EmbarkStudios/puffin", rev = "5ac4e54164ee89bd68c29f288c2b5613afc2c929" }
2024-12-28 22:21:15 -05:00
gpu-profiler = { git = "https://github.com/zackartz/gpu-profiler", features = [
"use-ash",
] }
2024-12-29 14:56:13 -05:00
gltf = { version = "1.4.1", features = ["import"] }
2024-12-29 20:00:14 -05:00
image = "0.25.5"
rayon = "1.10.0"
bytemuck.workspace = true
2025-01-12 16:25:52 -05:00
tracing.workspace = true
tracing-subscriber.workspace = true
2024-12-28 18:36:05 -05:00
[build-dependencies]
2025-01-12 16:25:52 -05:00
shaderc = "0.8"