31 lines
929 B
TOML
31 lines
929 B
TOML
[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"
|
|
spirv-std.workspace = true
|
|
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" }
|
|
puffin = { git = "https://github.com/EmbarkStudios/puffin", rev = "5ac4e54164ee89bd68c29f288c2b5613afc2c929" }
|
|
puffin_egui = { git = "https://github.com/EmbarkStudios/puffin", rev = "5ac4e54164ee89bd68c29f288c2b5613afc2c929" }
|
|
gpu-profiler = { git = "https://github.com/zackartz/gpu-profiler", features = [
|
|
"use-ash",
|
|
] }
|
|
gltf = { version = "1.4.1", features = ["import"] }
|
|
image = "0.25.5"
|
|
rayon = "1.10.0"
|
|
bytemuck.workspace = true
|
|
|
|
[build-dependencies]
|
|
spirv-builder.workspace = true
|