-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
23 lines (22 loc) · 559 Bytes
/
Cargo.toml
File metadata and controls
23 lines (22 loc) · 559 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "vulkan-example"
version = "0.1.0"
edition = "2024"
[dependencies]
ash = "0.38.0"
ash-window = "0.13.0"
egui = "0.33.0"
egui_extras = { version = "0.33.0", features = ["all_loaders"] }
egui-ash-renderer = { version = "0.11.0", default-features = false, features = [
"dynamic-rendering",
"gpu-allocator",
] }
egui-winit = "0.33.0"
env_logger = "0.11.10"
gpu-allocator = { version = "0.28.0", features = [
"vulkan",
], default-features = false }
log = "0.4.29"
nalgebra-glm = "0.20.0"
raw-window-handle = "0.6.2"
winit = "0.30.12"