-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (35 loc) · 880 Bytes
/
Cargo.toml
File metadata and controls
41 lines (35 loc) · 880 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
[package]
name = "vulkan-experiments"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ash = { version = "*", features = ["linked"] }
log = { version = "*"}
flexi_logger = { version = "*"}
imgui = "*"
mmap-rs = "*"
nalgebra = "*"
nalgebra-glm = "*"
memoffset = "*"
strum = "*"
strum_macros = "*"
gltf = { version = "*", features = ["names"] }
slice-of-array = "*"
chrono = "*"
smallvec = "*"
image = "*"
rayon = "*"
libktx-rs = "*"
serde = "*"
ron = "*"
winit = "*"
raw-window-handle = "*"
[target.'cfg(target_os = "windows")'.dependencies]
windows-sys = { version = "*", features = ["Win32_Foundation", "Win32_System_LibraryLoader"]}
[target.'cfg(target_os = "unix")'.dependencies]
x11 = "*"
# [build-dependencies]
# shaderc = "*"
[profile.dev.package."*"]
opt-level = 3