-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
69 lines (59 loc) · 1.58 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[workspace]
members = [
"crates/examples/gltf_viewer",
"crates/libs/app",
"crates/libs/asset_loader",
"crates/libs/resource_manager",
"crates/libs/gui",
"crates/libs/vulkan",
]
[workspace.package]
authors = ["Kosumi <chankocyo@gmail.com>"]
version = "0.2.0"
edition = "2021"
[workspace.dependencies]
winit = {version="0.27.5"}
nalgebra = "0.32.2"
ash = {version = "0.37.2", features = ["linked", "debug"]}
memoffset = "0.8.0"
gltf = {version = "1.1.0", features = [
"names",
"extras",
"image_jpeg_rayon",
"KHR_materials_ior",
"KHR_materials_pbrSpecularGlossiness",
"KHR_materials_transmission",
"KHR_materials_variants",
"KHR_materials_volume",
"KHR_materials_specular",
"KHR_texture_transform",
"KHR_materials_unlit",
"KHR_lights_punctual",
]}
#egui = "0.21.0"
#egui-winit = "0.21.1"
#egui-winit-ash-integration = "0.3.0"
log = "0.4.17"
anyhow = "1.0.0"
pretty_env_logger = "0.4.0"
gpu-allocator = { version = "0.22", default-features = false, features = ["vulkan"] }
imgui = "0.11.0"
imgui-winit-support = "0.11.0"
imgui-rs-vulkan-renderer = { version = "1.6", features = ["gpu-allocator", "dynamic-rendering"] }
thiserror = "1.0"
glam = { version = "0.24.0", features = ["serde"] }
glsl-to-spirv = "0.1.7"
rand = "0.8.5"
shellexpand = "3.0.0"
strum = "0.24.1"
strum_macros = "0.24.3"
mikktspace = "0.3.0"
rayon = "1.7"
cfg-if = "1.0.0"
clap = {version = "3.2.23", features = ["derive"]}
[workspace.dependencies.image]
version = "0.24.6"
default-features = false
features = ["png", "jpeg"]
[profile.dev.package.gltf]
opt-level = 3