-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
42 lines (38 loc) · 964 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
[workspace]
members = [
"crates/viewer",
"crates/libs/*"
]
resolver = "2"
[workspace.package]
version = "0.1.0"
edition = "2021"
authors = ["Adrien Bennadji <[email protected]>"]
[workspace.dependencies]
vulkan = { path = "crates/libs/vulkan" }
model = { path = "crates/libs/model" }
math = { path = "crates/libs/math" }
util = { path = "crates/libs/util" }
environment = { path = "crates/libs/environment" }
log = "0.4"
env_logger = "0.11"
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
clap = {version = "4.5", features = ["derive"] }
cgmath = "0.18"
rand = "0.8"
lerp = "0.5"
byteorder = "1.4"
mikktspace = "0.3"
image = "0.25"
ash = "0.38"
ash-window = "0.13"
raw-window-handle = "0.6"
winit = "0.30"
gltf = "1.3"
egui = "0.30"
egui-winit = "0.30"
egui-ash-renderer = { version = "0.7", features = ["dynamic-rendering"] }
[patch.crates-io.gltf]
git = "https://github.com/adrien-ben/gltf"
branch = "missing_extensions"