-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (39 loc) · 882 Bytes
/
Cargo.toml
File metadata and controls
43 lines (39 loc) · 882 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[workspace]
members = [
"vkengine",
"vktest",
"gltf-import",
]
resolver = "2"
[workspace.dependencies]
ash = "0.38.0"
ash-window = "0.13.0"
base64 = "0.22.0"
bevy_mikktspace = "0.16.1"
bytemuck = "1.24.0"
bytemuck_derive = "1.10.2"
clap = "4.5.57"
egui = "0.33.3"
egui-winit = "0.33.3"
glam = "0.31.0"
gltf = "1.4.1"
gpu-allocator = { version = "0.28.0", default-features = false, features = ["std", "vulkan"] }
image = "0.25.9"
inline-spirv = "0.2.1"
raw-window-handle = "0.6.0"
thiserror = "2.0.18"
urlencoding = "2.1.3"
winit = "0.30.12"
yastl = "0.1.2"
# Always compile deps with optimization.
# Some crates, like image, are *really* slow on unoptimized debug mode
[profile.dev.package."*"]
opt-level = 1
# For profiling support
[profile.release-prof]
inherits = "release"
debug = true
# LTO-enabled release
[profile.release-lto]
inherits = "release"
lto = true