-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (39 loc) · 914 Bytes
/
Cargo.toml
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.13.1"
bytemuck = "1.15.0"
bytemuck_derive = "1.6.0"
clap = "4.5.4"
egui = "0.27.2"
egui-winit = "0.27.2"
glam = "0.25.0"
gltf = "1.4.0"
gpu-allocator = { git = "https://github.com/Traverse-Research/gpu-allocator.git", branch = "ash-0.38", default-features = false }
image = "0.24.9"
inline-spirv = "0.2.1"
raw-window-handle = "0.6.0"
thiserror = "1.0.58"
urlencoding = "2.1.3"
winit = "0.29.4"
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